@font-face {
  font-family: "Onest";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../assets/fonts/onest-400.ttf") format("truetype");
}

@font-face {
  font-family: "Onest";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../assets/fonts/onest-500.ttf") format("truetype");
}

@font-face {
  font-family: "Onest";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../assets/fonts/onest-600.ttf") format("truetype");
}

@font-face {
  font-family: "Onest";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../assets/fonts/onest-700.ttf") format("truetype");
}

@font-face {
  font-family: "Onest";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("../assets/fonts/onest-800.ttf") format("truetype");
}

@font-face {
  font-family: "Onest";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("../assets/fonts/onest-900.ttf") format("truetype");
}

:root {
  --blue: #2269da;
  --blue-dark: #1556c2;
  --blue-soft: #eef5ff;
  --ink: #111827;
  --muted: #687386;
  --line: #e7edf7;
  --page: #eef4fb;
  --surface: #ffffff;
  --panel: #f4f8ff;
  --shadow: 0 16px 40px rgba(18, 51, 91, 0.09);
  --theme-header-bg: rgba(255, 255, 255, 0.72);
  --theme-header-border: rgba(215, 226, 243, 0.82);
  --theme-header-shadow: 0 16px 42px rgba(18, 51, 91, 0.08);
  --theme-header-text: #111827;
  --theme-header-muted: #536173;
  --theme-block-border: rgba(215, 226, 243, 0.88);
  --theme-surface-bg: rgba(255, 255, 255, 0.92);
  --theme-surface-soft: rgba(247, 251, 255, 0.96);
  --theme-popover-bg: #ffffff;
  --theme-popover-text: #344054;
  --theme-field-bg: #ffffff;
  --theme-hero-bg: rgba(255, 255, 255, 0.9);
  --theme-hero-art-bg: linear-gradient(90deg, rgba(255, 255, 255, 0), #eef4fb);
  --theme-hero-art-fade: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.9) 26%, rgba(255, 255, 255, 0) 100%);
  --app-viewport-width: 100vw;
  --app-viewport-half: 50vw;
}

@supports (width: 100dvw) {
  :root {
    --app-viewport-width: 100dvw;
    --app-viewport-half: 50dvw;
  }
}

* {
  box-sizing: border-box;
}

html {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow-x: hidden;
  background: var(--time-page, #eef5fb);
  scrollbar-color: rgba(34, 105, 218, 0.35) transparent;
  scroll-behavior: smooth;
}

html::-webkit-scrollbar {
  width: 14px;
  background: var(--time-page, #eef5fb);
}

html::-webkit-scrollbar-track {
  background: var(--time-page, #eef5fb);
}

html::-webkit-scrollbar-thumb {
  border: 3px solid transparent;
  border-radius: 999px;
  background-color: rgba(34, 105, 218, 0.34);
  background-clip: content-box;
}

body {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0;
  min-width: 0;
  min-height: 100dvh;
  overflow-x: hidden;
  background: var(--time-page, #eef5fb);
  color: var(--ink);
  font-family:
    "Onest", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.35;
  transition:
    background 0.45s ease,
    color 0.45s ease;
}

html[data-time-period="morning"] {
  --time-page: linear-gradient(180deg, #f7fcff 0%, #eef7fb 100%);
}

html[data-time-period="day"] {
  --time-page: linear-gradient(180deg, #fff7dd 0%, #f3f7ff 100%);
}

html[data-time-period="evening"] {
  --time-page:
    radial-gradient(circle at 80% 0%, rgba(34, 105, 218, 0.18), transparent 34%),
    linear-gradient(180deg, #182033 0%, #263045 42%, #f0f4fb 100%);
  scrollbar-color: rgba(139, 184, 255, 0.38) rgba(18, 27, 45, 0.92);
}

html[data-time-period="night"] {
  --time-page:
    radial-gradient(circle at 78% 0%, rgba(34, 105, 218, 0.22), transparent 32%),
    radial-gradient(circle at 12% 18%, rgba(32, 180, 134, 0.09), transparent 28%),
    linear-gradient(180deg, #05070d 0%, #080d18 52%, #101827 100%);
  scrollbar-color: rgba(139, 184, 255, 0.42) rgba(8, 13, 24, 0.96);
}

html[data-time-period="evening"]::-webkit-scrollbar,
html[data-time-period="evening"]::-webkit-scrollbar-track,
html[data-time-period="night"]::-webkit-scrollbar,
html[data-time-period="night"]::-webkit-scrollbar-track {
  background: var(--time-page, #101827);
}

html[data-time-period="evening"]::-webkit-scrollbar-thumb,
html[data-time-period="night"]::-webkit-scrollbar-thumb {
  background-color: rgba(139, 184, 255, 0.42);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 0;
  content: "";
  background-image:
    radial-gradient(circle at 1px 1px, rgba(34, 105, 218, 0.08) 1px, transparent 0),
    linear-gradient(rgba(34, 105, 218, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34, 105, 218, 0.02) 1px, transparent 1px);
  background-size: 28px 28px, 96px 96px, 96px 96px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.38), rgba(0, 0, 0, 0.08));
  opacity: 0.32;
  pointer-events: none;
}

body[data-time-period="morning"] {
  --time-page: linear-gradient(180deg, #f7fcff 0%, #eef7fb 100%);
  --theme-header-bg: rgba(255, 255, 255, 0.76);
}

body[data-time-period="day"] {
  --time-page: linear-gradient(180deg, #fff7dd 0%, #f3f7ff 100%);
  --theme-header-bg: rgba(255, 255, 255, 0.78);
  --theme-surface-soft: rgba(255, 250, 232, 0.78);
}

body[data-time-period="evening"] {
  --time-page:
    radial-gradient(circle at 80% 0%, rgba(34, 105, 218, 0.18), transparent 34%),
    linear-gradient(180deg, #182033 0%, #263045 42%, #f0f4fb 100%);
  --theme-header-bg: rgba(18, 27, 45, 0.7);
  --theme-header-border: rgba(148, 163, 184, 0.24);
  --theme-header-shadow: 0 22px 64px rgba(9, 15, 28, 0.28);
  --theme-header-text: #f8fbff;
  --theme-header-muted: #c5d0e1;
}

body[data-time-period="night"] {
  --blue-soft: rgba(34, 105, 218, 0.16);
  --ink: #f8fbff;
  --muted: #b7c4d7;
  --line: rgba(148, 163, 184, 0.24);
  --surface: rgba(14, 22, 38, 0.9);
  --panel: rgba(20, 30, 50, 0.76);
  --shadow: 0 24px 74px rgba(0, 0, 0, 0.42);
  --time-page:
    radial-gradient(circle at 78% 0%, rgba(34, 105, 218, 0.22), transparent 32%),
    radial-gradient(circle at 12% 18%, rgba(32, 180, 134, 0.09), transparent 28%),
    linear-gradient(180deg, #05070d 0%, #080d18 52%, #101827 100%);
  --theme-header-bg: rgba(8, 13, 24, 0.76);
  --theme-header-border: rgba(148, 163, 184, 0.22);
  --theme-header-shadow: 0 22px 70px rgba(0, 0, 0, 0.42);
  --theme-header-text: #f8fbff;
  --theme-header-muted: #b8c5d8;
  --theme-block-border: rgba(148, 163, 184, 0.22);
  --theme-surface-bg: linear-gradient(135deg, rgba(17, 24, 39, 0.94), rgba(14, 22, 38, 0.86));
  --theme-surface-soft: rgba(255, 255, 255, 0.07);
  --theme-popover-bg: #0f172a;
  --theme-popover-text: #e7eefb;
  --theme-field-bg: rgba(255, 255, 255, 0.08);
  --theme-hero-bg:
    radial-gradient(circle at 84% 18%, rgba(34, 105, 218, 0.2), transparent 34%),
    linear-gradient(135deg, rgba(17, 24, 39, 0.96), rgba(8, 13, 24, 0.92));
  --theme-hero-art-bg: linear-gradient(90deg, rgba(8, 13, 24, 0), rgba(20, 30, 50, 0.84));
  --theme-hero-art-fade: linear-gradient(90deg, rgba(17, 24, 39, 0.2) 0%, rgba(17, 24, 39, 0.08) 46%, rgba(17, 24, 39, 0) 100%);
}

body[data-time-period="night"]::before {
  background-image:
    radial-gradient(circle at 1px 1px, rgba(139, 184, 255, 0.08) 1px, transparent 0),
    linear-gradient(rgba(139, 184, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139, 184, 255, 0.02) 1px, transparent 1px);
  opacity: 0.22;
}

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

img,
svg,
video,
canvas {
  display: block;
  max-width: 100%;
}

@supports (overflow: clip) {
  html,
  body {
    overflow-x: clip;
  }
}

.page-loader {
  --loader-bg:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.96), rgba(239, 246, 255, 0.92) 44%, rgba(226, 240, 252, 0.88)),
    var(--page);
  --loader-ink: #111827;
  --loader-muted: #687386;
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--loader-bg);
  pointer-events: none;
  transition:
    opacity 0.45s ease,
    visibility 0.45s ease;
  animation: loader-exit 0.5s ease 2.2s forwards;
}

.page-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.skip-page-loader .page-loader {
  display: none;
}

.page-loader[data-period="morning"] {
  --loader-bg:
    radial-gradient(circle at 50% 38%, rgba(255, 255, 255, 0.94), rgba(235, 249, 255, 0.88) 42%, rgba(209, 235, 255, 0.86)),
    linear-gradient(145deg, #f8fcff, #dff4ff);
  --loader-ink: #0f2742;
  --loader-muted: #536b80;
}

.page-loader[data-period="day"] {
  --loader-bg:
    radial-gradient(circle at 50% 38%, rgba(255, 255, 255, 0.92), rgba(255, 245, 198, 0.9) 44%, rgba(255, 225, 132, 0.86)),
    linear-gradient(145deg, #fff9e0, #ffeaa6);
  --loader-ink: #473817;
  --loader-muted: #7d6731;
}

.page-loader[data-period="evening"] {
  --loader-bg:
    radial-gradient(circle at 50% 38%, rgba(77, 95, 142, 0.48), rgba(34, 38, 66, 0.94) 44%, rgba(18, 21, 37, 0.98)),
    linear-gradient(145deg, #292d46, #131627);
  --loader-ink: #f8fbff;
  --loader-muted: #c2cbdf;
}

.page-loader[data-period="night"] {
  --loader-bg:
    radial-gradient(circle at 50% 38%, rgba(52, 82, 138, 0.32), rgba(18, 28, 48, 0.92) 48%, #111827),
    #111827;
  --loader-ink: #ffffff;
  --loader-muted: #aeb8ca;
}

.greeting-loader {
  display: grid;
  justify-items: center;
  gap: 12px;
  width: min(520px, calc(100% - 48px));
  padding: 32px;
  text-align: center;
  animation: greeting-rise 0.55s ease both;
}

.greeting-loader strong {
  color: var(--loader-ink);
  font-size: clamp(42px, 8vw, 82px);
  font-weight: 950;
  line-height: 0.96;
  letter-spacing: 0;
}

.greeting-loader small {
  display: none;
  max-width: 360px;
  color: var(--loader-muted);
  font-size: 16px;
  font-weight: 800;
}

@keyframes greeting-rise {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes loader-exit {
  to {
    opacity: 0;
    visibility: hidden;
  }
}

.reveal-item {
  opacity: 0;
  transform: translate3d(0, 20px, 0);
  transition:
    opacity 0.88s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.88s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal-item.is-revealed {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.reveal-enabled .site-shell-home .header:not(.is-revealed),
.reveal-enabled .site-shell-home .hero:not(.is-revealed) {
  opacity: 0;
  transform: translate3d(0, 20px, 0);
  animation: first-screen-reveal-fallback 0.01s linear 4.2s forwards;
}

@keyframes first-screen-reveal-fallback {
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-loader {
    display: none;
  }

  .reveal-enabled .site-shell-home .header:not(.is-revealed),
  .reveal-enabled .site-shell-home .hero:not(.is-revealed),
  .reveal-item {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.site-shell {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0 42px;
}

.site-shell-home {
  width: 100%;
  max-width: none;
  margin-right: 0;
  margin-left: 0;
  padding-bottom: 0;
  overflow: hidden;
}

.site-shell-home > .header {
  width: min(1120px, calc(100% - 32px));
  margin-right: auto;
  margin-left: auto;
}

.site-shell-home .page-floor-start,
.site-shell-home .section-band {
  width: 100%;
  max-width: 100%;
  margin-right: 0;
  margin-left: 0;
}

.about-page {
  isolation: isolate;
}

.about-page::before {
  position: absolute;
  top: 134px;
  right: calc(50% - var(--app-viewport-half));
  bottom: -42px;
  left: calc(50% - var(--app-viewport-half));
  z-index: -1;
  content: "";
  border-top: 1px solid rgba(199, 214, 235, 0.78);
  border-bottom: 1px solid rgba(199, 214, 235, 0.78);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(242, 248, 255, 0.78));
}

body[data-time-period="night"] .about-page::before {
  border-top-color: rgba(139, 184, 255, 0.16);
  border-bottom-color: rgba(139, 184, 255, 0.16);
  background:
    radial-gradient(circle at 14% 10%, rgba(34, 105, 218, 0.13), transparent 30%),
    linear-gradient(180deg, rgba(17, 24, 39, 0.82), rgba(8, 13, 24, 0.46));
}

.section-connector {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  min-width: 0;
  width: 100%;
  margin: 22px auto 0;
  overflow: hidden;
  border: 1px solid var(--theme-block-border);
  border-radius: 18px;
  background:
    linear-gradient(90deg, rgba(34, 105, 218, 0.12), rgba(32, 180, 134, 0.08)),
    var(--theme-surface-soft);
  box-shadow: 0 14px 34px rgba(18, 51, 91, 0.08);
}

.section-connector span {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 920;
  line-height: 1.18;
  text-align: center;
}

.section-connector span + span {
  border-left: 1px solid var(--theme-block-border);
}

.section-connector-tight {
  width: 100%;
  margin: 0;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.section-band .section-connector {
  max-width: 100%;
}

.section-connector-tight span {
  min-height: 44px;
  font-size: 12px;
}

.section-band,
.page-floor-start {
  position: relative;
  display: grid;
  gap: 32px;
  width: var(--app-viewport-width);
  min-width: 0;
  margin: 0 0 0 calc(50% - var(--app-viewport-half));
  padding: 36px max(16px, calc((var(--app-viewport-width) - 1120px) / 2));
  overflow: hidden;
  border-top: 1px solid var(--theme-block-border);
  border-bottom: 1px solid var(--theme-block-border);
  background:
    radial-gradient(circle at 12% 12%, rgba(34, 105, 218, 0.09), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0.1));
}

.section-band::before,
.page-floor-start::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.16), transparent 24%),
    linear-gradient(120deg, rgba(34, 105, 218, 0.045), transparent 36%);
  opacity: 0.58;
  pointer-events: none;
}

.section-band > *,
.page-floor-start > * {
  position: relative;
  z-index: 1;
}

.page-floor-start {
  margin-top: 26px;
  background:
    radial-gradient(circle at 86% 12%, rgba(34, 105, 218, 0.12), transparent 31%),
    radial-gradient(circle at 9% 54%, rgba(32, 180, 134, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.34), rgba(238, 245, 255, 0.16));
}

.section-band-process {
  background:
    radial-gradient(circle at 9% 4%, rgba(32, 180, 134, 0.09), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.32), rgba(238, 245, 255, 0.18));
}

.section-band-app {
  background:
    radial-gradient(circle at 84% 12%, rgba(32, 180, 134, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(240, 247, 255, 0.38), rgba(255, 255, 255, 0.1));
}

.section-band-proof {
  background:
    radial-gradient(circle at 14% 8%, rgba(242, 183, 5, 0.08), transparent 25%),
    radial-gradient(circle at 88% 18%, rgba(34, 105, 218, 0.1), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.3), rgba(238, 245, 255, 0.14));
}

.section-band-plans {
  background:
    radial-gradient(circle at 50% 0%, rgba(34, 105, 218, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.09));
}

.header {
  position: relative;
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 26px;
  align-items: center;
  min-width: 0;
  min-height: 68px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 210px;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 10px;
  color: var(--blue);
  background: linear-gradient(180deg, #f4f9ff, #e9f2ff);
  box-shadow: inset 0 0 0 1px rgba(34, 105, 218, 0.14);
}

.brand-mark svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

.brand strong {
  display: block;
  color: #111111;
  font-size: 33px;
  font-weight: 950;
  font-style: italic;
  letter-spacing: 0;
  line-height: 0.9;
}

.brand small {
  display: block;
  margin-top: 2px;
  color: var(--blue);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.3px;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 30px;
  min-width: 0;
  color: #1d2633;
  font-size: 13px;
  font-weight: 700;
}

.nav a,
.nav-account-toggle {
  padding: 12px 0;
  white-space: nowrap;
}

.nav a[aria-current="page"],
.nav-account-toggle[aria-current="page"] {
  color: var(--blue);
}

.nav-account,
.header-account {
  position: relative;
  z-index: 110;
}

.nav-account-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  z-index: 120;
  display: grid;
  width: 190px;
  gap: 4px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 18px 36px rgba(17, 24, 39, 0.14);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transform: translate(-50%, 8px);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    visibility 0s linear 0.2s;
}

.nav-account.is-popup-open .nav-account-menu,
.header-account.is-popup-open .nav-account-menu {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transform: translate(-50%, 0);
  transition-delay: 0s;
}

.nav-account-menu a,
.nav-account-menu button {
  display: flex;
  min-height: 36px;
  align-items: center;
  padding: 0 10px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: #344054;
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 850;
  text-align: left;
}

.nav-account-menu a:visited {
  color: #344054;
}

.nav-account-menu a:hover,
.nav-account-menu button:hover {
  background: var(--blue-soft);
  color: var(--blue);
}

.nav-account-user {
  display: none;
}

[data-account-menu].is-logged-in .nav-account-guest {
  display: none;
}

[data-account-menu].is-logged-in .nav-account-user {
  display: grid;
}

.header-account .nav-account-menu {
  left: auto;
  right: 0;
  transform: translate(0, 8px);
}

.header-account.is-popup-open .nav-account-menu {
  transform: translate(0, 0);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  min-width: 0;
}

.phone {
  display: inline-flex;
  order: 2;
  align-items: center;
  gap: 9px;
  min-height: 58px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 12px 24px rgba(34, 105, 218, 0.12);
  color: var(--ink);
  white-space: nowrap;
}

.phone svg,
.account-header-link svg,
.quick-points svg,
.service-card svg,
.benefits svg {
  color: var(--blue);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.phone svg {
  width: 22px;
  height: 22px;
}

.phone strong {
  display: block;
  font-size: 15px;
  font-weight: 900;
}

.phone small {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.header-hours {
  display: none;
}

.phone-copy-toast {
  position: fixed;
  right: max(16px, env(safe-area-inset-right));
  bottom: max(18px, env(safe-area-inset-bottom));
  z-index: 1100;
  max-width: calc(100vw - 32px);
  padding: 12px 16px;
  border: 1px solid rgba(139, 184, 255, 0.34);
  border-radius: 16px;
  background: rgba(12, 20, 35, 0.94);
  box-shadow: 0 18px 34px rgba(4, 12, 24, 0.24);
  color: #ffffff;
  font-size: 14px;
  font-weight: 850;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

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

.header-photo-logo {
  display: block;
  order: 1;
  flex: 0 0 auto;
  width: 176px;
  height: 58px;
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #ffffff;
  object-fit: contain;
  box-shadow: 0 12px 24px rgba(34, 105, 218, 0.12);
}

.account-header-link {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #ffffff;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
  box-shadow: 0 10px 20px rgba(34, 105, 218, 0.08);
}

.header-account {
  order: 3;
}

.account-header-link[aria-current="page"] {
  border-color: rgba(34, 105, 218, 0.38);
  background: var(--blue-soft);
}

.account-header-link svg {
  width: 18px;
  height: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 27px;
  border: 1px solid var(--blue);
  border-radius: 999px;
  background: var(--blue);
  color: #ffffff;
  box-shadow: 0 12px 26px rgba(34, 105, 218, 0.22);
  font-size: 14px;
  font-weight: 900;
  text-align: center;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  background: var(--blue-dark);
  box-shadow: 0 16px 30px rgba(34, 105, 218, 0.28);
}

.hero-order-action {
  position: relative;
  display: inline-flex;
}

.btn-with-gift {
  position: relative;
  overflow: visible;
  padding-right: 56px;
}

.btn-gift {
  position: absolute;
  top: -24px;
  right: -20px;
  z-index: 2;
  display: inline-flex;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  padding: 4px;
  border: 1px solid rgba(34, 105, 218, 0.18);
  border-radius: 17px;
  background: #ffffff;
  box-shadow:
    0 12px 22px rgba(12, 44, 116, 0.18),
    0 3px 0 rgba(255, 255, 255, 0.72) inset;
  overflow: visible;
  transform: rotate(4deg);
}

.btn-gift img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 13px;
  object-fit: cover;
}

.btn-gift strong {
  position: absolute;
  right: -7px;
  bottom: -5px;
  display: inline-flex;
  min-width: 34px;
  height: 19px;
  align-items: center;
  justify-content: center;
  padding: 0 7px;
  border: 2px solid #ffffff;
  border-radius: 999px;
  background: var(--blue);
  color: #ffffff;
  box-shadow: 0 8px 14px rgba(34, 105, 218, 0.24);
  font-size: 10px;
  font-weight: 950;
  line-height: 1;
  text-shadow: none;
}

.order-options {
  position: absolute;
  left: calc(100% + 14px);
  top: 50%;
  z-index: 20;
  width: 286px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 18px 36px rgba(17, 24, 39, 0.14);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transform: translate(8px, -50%);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    visibility 0s linear 0.2s;
}

.hero-order-action.is-popup-open .order-options {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transform: translate(0, -50%);
  transition-delay: 0s;
}

.order-options::before {
  position: absolute;
  left: -7px;
  top: 50%;
  width: 14px;
  height: 14px;
  border-left: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  content: "";
  background: #ffffff;
  transform: translateY(-50%) rotate(45deg);
}

.order-options strong {
  display: block;
  color: var(--ink);
  font-size: 14px;
  font-weight: 950;
}

.order-options ul {
  display: grid;
  gap: 9px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.order-options li {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 10px;
  align-items: center;
  color: #485568;
  font-size: 13px;
  font-weight: 800;
}

.order-options li span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 11px;
  font-weight: 950;
}

.order-option-link {
  color: #485568;
  border-radius: 10px;
  transition:
    color 0.2s ease,
    background-color 0.2s ease;
}

.order-option-link:hover {
  color: var(--blue);
  background: var(--blue-soft);
}

.btn-small {
  min-height: 38px;
  padding: 0 21px;
  font-size: 12px;
}

.btn-outline {
  background: #ffffff;
  color: var(--blue);
  box-shadow: none;
}

.btn-outline:hover {
  background: var(--blue-soft);
  color: var(--blue-dark);
  box-shadow: none;
}

.btn-light {
  min-height: 40px;
  border-color: #ffffff;
  background: #ffffff;
  color: var(--blue);
  box-shadow: 0 12px 22px rgba(12, 44, 116, 0.2);
}

.btn-light:hover {
  background: #f3f7ff;
  color: var(--blue-dark);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(360px, 0.85fr) minmax(420px, 1.15fr);
  align-items: center;
  min-width: 0;
  min-height: 520px;
  margin-top: 26px;
  overflow: hidden;
  border: 1px solid rgba(226, 236, 249, 0.88);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 20px 54px rgba(22, 61, 116, 0.08);
}

.hero-copy {
  position: relative;
  z-index: 2;
  min-width: 0;
  padding: 42px 0 40px 24px;
}

.hero h1 {
  max-width: 420px;
  margin: 0;
  font-size: 56px;
  font-weight: 950;
  line-height: 0.96;
  letter-spacing: 0;
}

.hero h1 span {
  display: block;
  color: var(--blue);
}

.hero-note {
  max-width: 390px;
  margin: 16px 0 0;
  color: #526174;
  font-size: 13px;
  font-weight: 800;
}

.hero-copy > p {
  max-width: 420px;
  margin: 24px 0 0;
  color: #334155;
  font-size: 16px;
  font-weight: 700;
}

.hero-copy > .hero-note {
  max-width: 390px;
  margin: 16px 0 0;
  color: #526174;
  font-size: 13px;
  font-weight: 800;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.quick-points {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  max-width: 430px;
  margin-top: 30px;
}

.quick-points article {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 10px;
  row-gap: 2px;
  align-items: center;
  min-width: 0;
  min-height: 56px;
  padding: 10px 14px;
  border: 1px solid var(--theme-block-border);
  border-radius: 16px;
  background: var(--theme-surface-soft);
  text-align: left;
}

.quick-points svg {
  grid-row: 1 / span 2;
  width: 34px;
  height: 34px;
  padding: 8px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow:
    0 8px 18px rgba(42, 77, 123, 0.08),
    inset 0 0 0 1px var(--line);
}

.quick-points strong {
  display: block;
  grid-column: 2;
  color: #1f2937;
  font-size: 13px;
  font-weight: 950;
  line-height: 1.15;
}

.quick-points span {
  display: block;
  grid-column: 2;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.15;
}

.hero-art {
  position: relative;
  align-self: stretch;
  min-width: 0;
  min-height: 480px;
  overflow: hidden;
  border-radius: 230px 42px 42px 230px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), #eef4fb);
}

.hero-art::before {
  position: absolute;
  inset: 0 auto 0 -1px;
  z-index: 2;
  width: 20%;
  content: "";
  background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.9) 26%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
}

.hero-art img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: 50% 52%;
  transform: scale(1.045);
  transform-origin: center;
}

.section-panel {
  padding: 28px 36px 34px;
  border-radius: 24px;
  background: var(--panel);
}

.steps {
  margin-top: 22px;
}

.steps-heading {
  display: grid;
  justify-items: center;
  gap: 8px;
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
}

.steps-heading > span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 12px;
  font-weight: 950;
}

.steps-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
}

h2 {
  margin: 0;
  color: #111111;
  font-size: 21px;
  font-weight: 950;
  text-align: center;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  min-width: 0;
  margin-top: 24px;
}

.steps-grid article {
  position: relative;
  display: grid;
  min-height: 190px;
  align-content: start;
  gap: 12px;
  padding: 20px;
  border: 1px solid var(--theme-block-border);
  border-radius: 20px;
  background: var(--theme-surface-soft);
  text-align: left;
}

.steps-grid article:not(:last-child)::after {
  content: none;
}

.steps-grid span {
  display: inline-flex;
  width: fit-content;
  min-height: 34px;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(34, 105, 218, 0.12);
  color: var(--blue);
  box-shadow: none;
  font-size: 14px;
  font-weight: 950;
}

.steps-grid strong {
  color: var(--ink);
  font-size: 18px;
  font-weight: 950;
  line-height: 1.15;
}

.steps-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 760;
  line-height: 1.3;
}

.services {
  margin-top: 36px;
  padding: 34px;
  border: 1px solid var(--theme-block-border);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.28);
}

.services-heading {
  max-width: 720px;
}

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

.service-card {
  display: flex;
  min-height: 430px;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(199, 214, 235, 0.9);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 18px 36px rgba(42, 77, 123, 0.08);
  text-align: left;
}

.service-card-head {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 24px 26px 0;
  color: var(--ink);
  text-align: left;
}

.service-card .service-card-head h3 {
  margin: 0;
  color: var(--ink);
  font-size: 20px;
  font-weight: 950;
  line-height: 1.15;
}

.service-card-head svg {
  width: 48px;
  height: 48px;
  padding: 12px;
  border-radius: 14px;
  background: rgba(34, 105, 218, 0.12);
  color: var(--blue);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.service-card-body {
  display: flex;
  min-height: 0;
  flex: 1;
  flex-direction: column;
  padding: 16px 26px 26px;
}

.service-card .service-card-lead {
  min-height: 42px;
  max-width: none;
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 850;
  line-height: 1.35;
  text-align: left;
}

.service-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: -6px 0 16px;
}

.service-meta span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(34, 105, 218, 0.22);
  border-radius: 999px;
  background: rgba(34, 105, 218, 0.08);
  color: var(--blue);
  font-size: 12px;
  font-weight: 920;
  line-height: 1;
}

.service-checklist {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 18px 0 0;
  border-top: 1px solid rgba(148, 163, 184, 0.38);
  list-style: none;
}

.service-checklist li {
  position: relative;
  padding-left: 30px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 760;
  line-height: 1.32;
}

.service-checklist li::before {
  position: absolute;
  top: 0.15em;
  left: 0;
  width: 17px;
  height: 10px;
  border-bottom: 3px solid var(--blue);
  border-left: 3px solid var(--blue);
  content: "";
  transform: rotate(-45deg);
}

.service-details {
  width: 100%;
  align-self: stretch;
  margin-top: auto;
  padding-top: 22px;
}

.service-details summary {
  display: flex;
  width: 100%;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 18px;
  border: 1px solid rgba(34, 105, 218, 0.38);
  border-radius: 999px;
  background: rgba(34, 105, 218, 0.08);
  color: var(--blue);
  cursor: pointer;
  font-size: 13px;
  font-weight: 950;
  line-height: 1.15;
  list-style: none;
  text-align: center;
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

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

.service-details summary::after {
  width: 9px;
  height: 9px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  content: "";
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.2s ease;
}

.service-details summary:hover {
  border-color: var(--blue);
  background: var(--blue);
  color: #ffffff;
  transform: translateY(-1px);
}

.service-details[open] summary {
  border-color: var(--blue);
  background: var(--blue);
  color: #ffffff;
}

.service-details[open] summary::after {
  transform: rotate(225deg) translate(-1px, -1px);
}

.service-details > ul,
.service-detail-list {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
  padding: 14px 0 0 18px;
  border-top: 1px solid rgba(148, 163, 184, 0.28);
  color: var(--muted);
  font-size: 13px;
  font-weight: 720;
  line-height: 1.34;
}

.service-detail-list {
  gap: 14px;
  padding-left: 0;
}

.service-detail-group {
  display: grid;
  gap: 7px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.18);
}

.service-detail-group:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.service-detail-group h4 {
  margin: 0;
  color: var(--ink);
  font-size: 13px;
  font-weight: 950;
  line-height: 1.2;
}

.service-detail-group p,
.service-detail-note {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 760;
  line-height: 1.34;
}

.service-detail-group ul {
  display: grid;
  gap: 6px;
  margin: 0;
  padding-left: 18px;
}

.service-detail-group li strong {
  color: var(--ink);
  font-weight: 950;
}

.service-detail-note {
  padding: 10px 12px;
  border: 1px solid rgba(34, 105, 218, 0.16);
  border-radius: 14px;
  background: rgba(34, 105, 218, 0.06);
}

.services-heading-actions {
  display: flex;
  justify-content: center;
  margin-top: 8px;
}

.service-price-button {
  width: 100%;
  align-self: stretch;
  min-height: 46px;
  margin-top: auto;
  box-shadow: none;
}

.service-price-button-top {
  width: auto;
  min-width: 190px;
  margin-top: 0;
}

.service-price-button + .service-details {
  margin-top: 12px;
  padding-top: 0;
}

html.is-price-modal-open,
body.is-price-modal-open {
  overflow: hidden;
  overscroll-behaivor: none;
}

body.is-price-modal-open {
    position: fixed;
    top: var(--price-scrolly-lock-top, 0);
    right: 0;
    left: 0;
    width: 100%;
}

.price-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  z-index: 5000;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 28px;
  isolation: isolate;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  overscroll-behavior: contain;
  transition:
    opacity 0.22s ease,
    visibility 0s linear 0.22s;
}

.price-modal.is-open {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transition-delay: 0s;
}

.price-modal-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 12%, rgba(34, 105, 218, 0.28), transparent 36%),
    rgba(5, 13, 28, 0.58);
  backdrop-filter: blur(10px);
}

.price-modal-panel {
  position: relative;
  z-index: 1;
  width: min(100%, 1080px);
  max-height: min(86vh, 820px);
  overflow: auto;
  padding: 34px;
  border: 1px solid rgba(199, 214, 235, 0.9);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 250, 255, 0.98));
  box-shadow: 0 32px 80px rgba(6, 21, 48, 0.28);
  outline: none;
  transform: translateY(16px) scale(0.98);
  transition: transform 0.22s ease;
}

.price-modal.is-open .price-modal-panel {
  transform: translateY(0) scale(1);
}

.price-modal-close {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(199, 214, 235, 0.95);
  border-radius: 15px;
  background: #ffffff;
  color: var(--ink);
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.price-modal-close:hover {
  border-color: rgba(34, 105, 218, 0.32);
  background: var(--blue-soft);
  transform: translateY(-1px);
}

.price-modal-close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.price-modal-close span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.price-modal-close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.price-modal-head {
  display: grid;
  gap: 10px;
  max-width: 720px;
  padding-right: 64px;
}

.price-modal-kicker {
  display: inline-flex;
  width: fit-content;
  min-height: 30px;
  align-items: center;
  padding: 0 13px;
  border-radius: 999px;
  background: rgba(34, 105, 218, 0.1);
  color: var(--blue);
  font-size: 12px;
  font-weight: 950;
}

.price-modal-head h2 {
  margin: 0;
  color: var(--ink);
  font-size: 34px;
  font-weight: 950;
  line-height: 1.05;
}

.price-modal-head p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 760;
  line-height: 1.45;
}

.price-modal-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(290px, 0.92fr);
  gap: 22px;
  margin-top: 26px;
}

.price-calculator,
.price-info-card {
  border: 1px solid rgba(199, 214, 235, 0.86);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 18px 36px rgba(42, 77, 123, 0.08);
}

.price-calculator {
  display: grid;
  gap: 18px;
  padding: 22px;
}

.price-field {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}

.price-field input,
.price-field select {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  border: 1px solid rgba(199, 214, 235, 0.95);
  border-radius: 15px;
  background: #f8fbff;
  color: var(--ink);
  font: inherit;
  font-size: 15px;
  font-weight: 850;
  outline: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease;
}

.price-field input:focus,
.price-field select:focus {
  border-color: rgba(34, 105, 218, 0.62);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(34, 105, 218, 0.12);
}

.price-area-fields,
.price-item-fields {
  display: grid;
  grid-template-columns: minmax(170px, 0.62fr) minmax(0, 1fr);
  gap: 16px;
}

.price-item-fields {
  grid-template-columns: minmax(0, 1fr) 150px;
}

.price-area-fields[hidden],
.price-item-fields[hidden] {
  display: none !important;
}

.price-levels {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.price-levels legend {
  grid-column: 1 / -1;
  margin-bottom: 0;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}

.price-levels label {
  position: relative;
  min-width: 0;
}

.price-levels input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.price-levels span {
  display: grid;
  gap: 3px;
  min-height: 54px;
  align-content: center;
  padding: 9px 12px;
  border: 1px solid rgba(199, 214, 235, 0.95);
  border-radius: 15px;
  background: #f8fbff;
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease;
}

.price-levels b {
  color: var(--ink);
  font-size: 13px;
  font-weight: 950;
  line-height: 1.1;
}

.price-levels small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
}

.price-levels input:checked + span {
  border-color: rgba(34, 105, 218, 0.72);
  background: rgba(34, 105, 218, 0.1);
}

.price-levels input:checked + span b,
.price-levels input:checked + span small {
  color: var(--blue);
}

.price-result-card {
  display: grid;
  gap: 8px;
  padding: 20px;
  border-radius: 20px;
  background:
    radial-gradient(circle at 92% 12%, rgba(34, 105, 218, 0.18), transparent 36%),
    linear-gradient(135deg, #102449, #2269da);
  color: #ffffff;
  box-shadow: 0 18px 32px rgba(34, 105, 218, 0.22);
}

.price-result-card span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 900;
}

.price-result-card strong {
  font-size: clamp(30px, 5vw, 46px);
  font-weight: 950;
  line-height: 1;
}

.price-result-card p {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 760;
  line-height: 1.35;
}

.price-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.price-actions .btn {
  flex: 1 1 190px;
}

.price-info {
  display: grid;
  align-content: start;
  gap: 14px;
}

.price-info-card {
  display: grid;
  gap: 16px;
  padding: 20px;
}

.price-info-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 18px;
  font-weight: 950;
}

.price-rate-grid {
  display: grid;
  gap: 10px;
}

.price-rate-grid div,
.price-extra-list button {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px 14px;
  align-items: center;
  width: 100%;
  padding: 13px 14px;
  border: 1px solid rgba(199, 214, 235, 0.8);
  border-radius: 15px;
  background: #f8fbff;
}

.price-extra-list button {
  color: inherit;
  cursor: pointer;
  font: inherit;
  text-align: left;
  transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.price-extra-list button:hover,
.price-extra-list button:focus-visible,
.price-extra-list button.is-active {
  border-color: rgba(34, 105, 218, 0.42);
  background: rgba(34, 105, 218, 0.08);
  box-shadow: 0 0 0 3px rgba(34, 105, 218, 0.08);
  outline: none;
}

.price-rate-grid span,
.price-extra-list span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}

.price-rate-grid strong,
.price-extra-list strong {
  color: var(--ink);
  font-size: 16px;
  font-weight: 950;
  white-space: nowrap;
}

.price-rate-grid small {
  grid-column: 1 / -1;
  color: #8a97aa;
  font-size: 12px;
  font-weight: 800;
}

.price-extra-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.price-extra-list li {
  min-width: 0;
}

.price-disclaimer {
  margin: 0;
  padding: 14px 16px;
  border: 1px solid rgba(34, 105, 218, 0.14);
  border-radius: 18px;
  background: rgba(34, 105, 218, 0.07);
  color: var(--muted);
  font-size: 12px;
  font-weight: 780;
  line-height: 1.42;
}

.service-label {
  display: inline-flex;
  width: fit-content;
  min-height: 26px;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 11px;
  font-weight: 950;
}

.subscriptions {
  margin-top: 46px;
  padding: 42px 0 4px;
}

.section-heading {
  display: grid;
  justify-items: center;
  gap: 8px;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.section-heading > span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 14px;
  border-radius: 999px;
  background: #e9f6f2;
  color: #13755d;
  font-size: 12px;
  font-weight: 950;
}

.section-heading h2 {
  font-size: 34px;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
}

.subscription-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  min-width: 0;
  max-width: 1044px;
  margin: 28px auto 0;
}

.subscription-card {
  position: relative;
  display: grid;
  min-height: 430px;
  grid-template-rows: auto auto 1fr auto;
  align-content: stretch;
  gap: 18px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 18px 36px rgba(42, 77, 123, 0.08);
}

.subscription-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 7px;
  content: "";
  background: linear-gradient(90deg, #2269da, #20b486);
}

.subscription-top {
  display: grid;
  gap: 14px;
}

.subscription-tag {
  display: inline-flex;
  width: fit-content;
  min-height: 34px;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 13px;
  font-weight: 950;
}

.subscription-card h3 {
  min-height: 62px;
  margin: 0;
  color: #1f2937;
  font-size: 18px;
  font-weight: 950;
  line-height: 1.18;
}

.subscription-price {
  margin: 0;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 22px;
  font-weight: 950;
}

.subscription-unavailable {
  margin: 0;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: #667085;
  font-size: 18px;
  font-weight: 950;
}

.subscription-card ul {
  display: grid;
  gap: 11px;
  align-content: start;
  min-height: 112px;
  margin: 0;
  padding: 0;
  color: #485568;
  font-size: 13px;
  font-weight: 750;
  list-style: none;
}

.subscription-card li {
  position: relative;
  padding-left: 24px;
}

.subscription-card li::before {
  position: absolute;
  left: 0;
  top: 0.25em;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  content: "";
  background:
    linear-gradient(#ffffff, #ffffff) center / 5px 2px no-repeat,
    linear-gradient(90deg, #20b486, #2269da);
}

.subscription-card .btn {
  width: 100%;
  min-height: 46px;
  padding: 0 16px;
}

.subscription-disabled {
  display: inline-flex;
  width: 100%;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 1px solid #d7e2f3;
  border-radius: 999px;
  background: #f3f7fc;
  color: #667085;
  font-size: 14px;
  font-weight: 950;
  text-align: center;
}

.subscription-details {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 900;
}

.subscription-details::after {
  display: inline-block;
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  content: "";
  transform: rotate(45deg);
}

.mini-app {
  display: grid;
  grid-template-columns: minmax(360px, 0.95fr) minmax(360px, 1.05fr);
  gap: 30px;
  align-items: center;
  margin-top: 48px;
  padding: 44px 46px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
  background:
    radial-gradient(circle at 86% 20%, rgba(32, 180, 134, 0.14), transparent 28%),
    linear-gradient(135deg, #ffffff 0%, #f1f7ff 100%);
  box-shadow: var(--shadow);
}

.page-floor-start .hero {
  border-radius: 28px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.page-floor-start .hero-copy {
  padding: 52px 24px 52px 44px;
}

.mini-app-copy {
  display: grid;
  gap: 18px;
  min-width: 0;
}

.mini-app-copy > span {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  min-height: 32px;
  padding: 0 14px;
  border-radius: 999px;
  background: #e9f6f2;
  color: #13755d;
  font-size: 12px;
  font-weight: 950;
}

.mini-app h2 {
  max-width: 560px;
  font-size: 42px;
  line-height: 1.05;
  text-align: left;
}

.mini-app p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  font-weight: 750;
}

.mini-app-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 6px;
}

.mini-app-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 8px;
}

.mini-app-points article {
  position: relative;
  min-width: 0;
  overflow: hidden;
  padding: 18px;
  border: 1px solid rgba(34, 105, 218, 0.26);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(34, 105, 218, 0.12), rgba(255, 255, 255, 0.72)),
    rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 28px rgba(34, 105, 218, 0.1);
}

.mini-app-points article::before {
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  content: "";
  background: linear-gradient(90deg, var(--blue), #20b486);
}

.mini-app-points strong {
  display: block;
  color: var(--ink);
  font-size: 15px;
  font-weight: 950;
  line-height: 1.15;
}

.mini-app-points span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 760;
  line-height: 1.24;
}

.mini-app-media {
  position: relative;
  min-width: 0;
}

.mini-app-media::before {
  position: absolute;
  inset: 9% 1% 3% 18%;
  z-index: 0;
  border-radius: 38px;
  content: "";
  background: linear-gradient(135deg, rgba(34, 105, 218, 0.18), rgba(32, 180, 134, 0.14));
  transform: rotate(-4deg);
}

.mini-app-media img {
  position: relative;
  z-index: 1;
  width: min(100%, 520px);
  margin-left: auto;
  border-radius: 26px;
  filter: drop-shadow(0 26px 34px rgba(15, 45, 92, 0.16));
}

.account {
  margin-top: 48px;
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    radial-gradient(circle at 9% 8%, rgba(34, 105, 218, 0.12), transparent 30%),
    radial-gradient(circle at 92% 14%, rgba(32, 180, 134, 0.12), transparent 28%),
    linear-gradient(135deg, #ffffff 0%, #f2f7ff 100%);
  box-shadow: var(--shadow);
}

.account-page .account {
  position: relative;
  width: var(--app-viewport-width);
  margin: 34px 0 -42px calc(50% - var(--app-viewport-half));
  padding: 52px max(16px, calc((var(--app-viewport-width) - 1120px) / 2)) 64px;
  overflow: hidden;
  border-color: var(--theme-block-border);
  border-right: 0;
  border-left: 0;
  border-radius: 0;
  background:
    radial-gradient(circle at 12% 12%, rgba(34, 105, 218, 0.09), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0.1));
  box-shadow: none;
}

.account-page .account::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.16), transparent 24%),
    linear-gradient(120deg, rgba(34, 105, 218, 0.045), transparent 36%);
  opacity: 0.58;
  pointer-events: none;
}

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

.account-page .account-layout-profile {
  padding: 42px 54px;
  border: 1px solid var(--theme-block-border);
  border-radius: 28px;
  background: var(--theme-surface-bg);
  box-shadow: var(--shadow);
}

.auth-page {
  min-height: 100vh;
  padding-bottom: 34px;
}

.auth-section {
  position: relative;
  display: grid;
  width: var(--app-viewport-width);
  min-height: clamp(440px, calc(100vh - 170px), 680px);
  margin: 24px 0 0 calc(50% - var(--app-viewport-half));
  overflow: hidden;
  place-items: center;
  padding: 52px max(16px, calc((var(--app-viewport-width) - 1120px) / 2)) 56px;
  border-top: 1px solid rgba(199, 214, 235, 0.78);
  border-bottom: 1px solid rgba(199, 214, 235, 0.78);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(242, 248, 255, 0.78));
}

.auth-section::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.16), transparent 24%),
    linear-gradient(120deg, rgba(34, 105, 218, 0.045), transparent 36%);
  opacity: 0.3;
  pointer-events: none;
}

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

body[data-time-period="night"] .auth-section {
  border-top-color: rgba(139, 184, 255, 0.16);
  border-bottom-color: rgba(139, 184, 255, 0.16);
  background:
    radial-gradient(circle at 14% 10%, rgba(34, 105, 218, 0.13), transparent 30%),
    linear-gradient(180deg, rgba(17, 24, 39, 0.82), rgba(8, 13, 24, 0.46));
}

body[data-time-period="night"] .auth-section::before {
  background:
    radial-gradient(circle at 18% 20%, rgba(139, 184, 255, 0.08), transparent 26%),
    linear-gradient(120deg, rgba(139, 184, 255, 0.045), transparent 38%);
  opacity: 0.42;
}

.auth-card {
  display: grid;
  width: min(100%, 420px);
  gap: 14px;
  padding: 26px;
  border: 1px solid var(--theme-block-border);
  border-radius: 24px;
  background:
    radial-gradient(circle at 12% 0%, rgba(34, 105, 218, 0.14), transparent 34%),
    var(--theme-surface-bg);
  box-shadow: var(--shadow);
}

.auth-mode-switch {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
  padding: 4px;
  border: 1px solid var(--theme-block-border);
  border-radius: 999px;
  background: var(--theme-surface-soft);
}

.auth-mode-switch a {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 950;
}

.auth-mode-switch a.is-active {
  background: var(--blue);
  color: #ffffff;
  box-shadow: 0 8px 16px rgba(34, 105, 218, 0.18);
}

.auth-label {
  display: inline-flex;
  width: fit-content;
  min-height: 30px;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(34, 105, 218, 0.1);
  color: var(--blue);
  font-size: 12px;
  font-weight: 950;
}

.auth-card h1 {
  margin: 0;
  color: var(--ink);
  font-size: 30px;
  font-weight: 950;
  line-height: 1.08;
}

.auth-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 760;
  line-height: 1.35;
}

.auth-card label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}

.auth-verification {
  display: grid;
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(34, 105, 218, 0.18);
  border-radius: 16px;
  background: rgba(34, 105, 218, 0.06);
}

.auth-verification[hidden] {
  display: none;
}

.auth-back {
  width: fit-content;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--blue);
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  text-align: left;
}

.auth-card input {
  width: 100%;
  min-height: 50px;
  min-width: 0;
  padding: 0 14px;
  border: 1px solid var(--theme-block-border);
  border-radius: 14px;
  background: var(--theme-field-bg);
  color: var(--ink);
  font: inherit;
  font-size: 15px;
  font-weight: 750;
  outline: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.auth-card input:focus {
  border-color: rgba(34, 105, 218, 0.72);
  box-shadow: 0 0 0 4px rgba(34, 105, 218, 0.1);
}

.auth-card .btn {
  width: 100%;
  margin-top: 4px;
}

.auth-card .btn:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.auth-message,
.account-message,
.order-request-message {
  display: none;
  min-height: 0;
  margin: 0;
  padding: 12px 14px;
  border: 1px solid rgba(19, 117, 93, 0.2);
  border-radius: 16px;
  background: rgba(32, 180, 134, 0.12);
  color: #13755d;
  font-size: 13px;
  font-weight: 850;
  line-height: 1.28;
}

.auth-message:not(:empty),
.account-message:not(:empty),
.order-request-message:not(:empty) {
  display: block;
}

.auth-message.is-loading,
.order-request-message.is-loading {
  border-color: rgba(34, 105, 218, 0.22);
  background: rgba(34, 105, 218, 0.12);
  color: var(--blue);
}

.auth-message.is-error,
.order-request-message.is-error {
  border-color: rgba(225, 82, 82, 0.26);
  background: rgba(225, 82, 82, 0.13);
  color: #b83333;
}

.auth-message.is-warning,
.order-request-message.is-warning {
  border-color: rgba(232, 147, 31, 0.28);
  background: rgba(255, 176, 64, 0.14);
  color: #a66000;
}

.account-heading {
  display: grid;
  max-width: 720px;
  gap: 8px;
  margin-bottom: 26px;
}

.account-dashboard > .account-heading {
  max-width: none;
  margin-bottom: 0;
  padding-bottom: 22px;
  border-bottom: 1px solid #dbe6f5;
}

.account-dashboard > .account-heading h1,
.account-dashboard > .account-heading h2 {
  max-width: none;
}

.account-heading > span,
.account-label {
  display: inline-flex;
  width: fit-content;
  min-height: 30px;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  background: #e9f6f2;
  color: #13755d;
  font-size: 12px;
  font-weight: 950;
}

.account-heading h1,
.account-heading h2 {
  max-width: 640px;
  font-size: 38px;
  line-height: 1.08;
  text-align: left;
}

.account-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  font-weight: 750;
}

.account-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(520px, 1.28fr);
  gap: 20px;
  align-items: start;
}

.account-layout-profile {
  grid-template-columns: minmax(0, 1fr);
}

.account-layout-profile .account-dashboard {
  width: min(100%, 1040px);
  margin: 0 auto;
}

.account-login,
.account-dashboard {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 16px 34px rgba(42, 77, 123, 0.08);
}

.account-login {
  display: grid;
  gap: 14px;
  padding: 24px;
}

.account-mode-switch {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
  padding: 4px;
  border: 1px solid #d7e2f3;
  border-radius: 999px;
  background: #f4f8ff;
}

.account-mode-switch button {
  min-height: 34px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 950;
}

.account-mode-switch button.is-active {
  background: var(--blue);
  color: #ffffff;
  box-shadow: 0 8px 16px rgba(34, 105, 218, 0.18);
}

.account-login h2,
.account-login h3 {
  margin: 0;
  color: var(--ink);
  font-size: 22px;
  font-weight: 950;
  line-height: 1.12;
}

.account-login h2 {
  color: var(--blue);
  font-size: 54px;
  line-height: 0.95;
}

.account-login p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
}

.account-login label {
  display: grid;
  gap: 7px;
  color: #485568;
  font-size: 13px;
  font-weight: 850;
}

.account-login input,
.account-address-form input,
.account-data-form input,
.account-data-form select,
.account-data-form textarea {
  width: 100%;
  min-height: 48px;
  min-width: 0;
  padding: 0 14px;
  border: 1px solid #d7e2f3;
  border-radius: 14px;
  background: #ffffff;
  color: var(--ink);
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  outline: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.account-data-form textarea {
  min-height: 86px;
  padding-top: 12px;
  resize: vertical;
}

.account-login input:focus,
.account-address-form input:focus,
.account-data-form input:focus,
.account-data-form select:focus,
.account-data-form textarea:focus {
  border-color: rgba(34, 105, 218, 0.72);
  box-shadow: 0 0 0 4px rgba(34, 105, 218, 0.1);
}

.account-login .btn {
  width: 100%;
  margin-top: 4px;
}

.account-login .btn:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.account-dashboard {
  display: grid;
  gap: 0;
  overflow: hidden;
  padding: 28px;
  border: 1px solid #d8e4f4;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 251, 255, 0.98));
  box-shadow: 0 24px 70px rgba(28, 50, 82, 0.1);
}

.account-profile {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid #dbe6f5;
  background: transparent;
}

.account-avatar {
  display: grid;
  width: 60px;
  height: 60px;
  place-items: center;
  border-radius: 18px;
  background:
    radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.64), transparent 34%),
    linear-gradient(135deg, var(--blue), #20b486);
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(34, 105, 218, 0.2);
  font-size: 24px;
  font-weight: 950;
}

.account-profile span:not(.account-avatar) {
  color: #13755d;
  font-size: 12px;
  font-weight: 950;
}

.account-profile strong {
  display: block;
  margin-top: 2px;
  color: var(--ink);
  font-size: 21px;
  font-weight: 950;
}

.account-profile small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
}

.account-logout {
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid #d7e2f3;
  border-radius: 999px;
  background: #ffffff;
  color: #667085;
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 900;
}

.account-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding: 20px 0;
  border-bottom: 1px solid #dbe6f5;
}

.account-stats article,
.order-card {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
}

.account-stats span,
.order-card span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.account-stats strong {
  display: block;
  margin-top: 6px;
  color: var(--ink);
  font-size: 22px;
  font-weight: 950;
}

.account-stats small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 750;
}

.account-workspace {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.account-dashboard-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 0;
  align-items: start;
}

.account-dashboard-grid-secondary {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.account-panel {
  display: grid;
  align-content: start;
  gap: 14px;
  min-width: 0;
  padding: 24px 0 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.account-dashboard-grid .account-panel:nth-child(2) {
  margin-left: 24px;
  padding-left: 24px;
  border-left: 1px solid #dbe6f5;
}

.account-dashboard-grid-secondary {
  margin-top: 24px;
  border-top: 1px solid #dbe6f5;
}

.account-data-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.account-data-form label {
  display: grid;
  gap: 7px;
  color: #485568;
  font-size: 13px;
  font-weight: 850;
}

.account-form-wide,
.account-data-form .btn,
.account-data-form .account-message {
  grid-column: 1 / -1;
}

.account-orders,
.account-addresses {
  display: grid;
  align-content: start;
  gap: 12px;
  min-width: 0;
}

.account-block-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.account-block-title span {
  color: var(--ink);
  font-size: 17px;
  font-weight: 950;
}

.account-block-title a {
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
}

.order-card {
  display: grid;
  gap: 7px;
}

.account-order-list {
  display: grid;
  gap: 12px;
}

.account-order-card,
.account-empty-card {
  display: grid;
  gap: 10px;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
}

.account-order-head {
  display: grid;
  gap: 5px;
}

.account-order-head span {
  width: fit-content;
  padding: 5px 9px;
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 11px;
  font-weight: 950;
}

.account-order-head strong,
.account-empty-card strong {
  color: var(--ink);
  font-size: 16px;
  font-weight: 950;
  line-height: 1.18;
}

.account-order-card p,
.account-empty-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 720;
  line-height: 1.35;
}

.account-order-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.account-order-meta small {
  color: #13755d;
  font-size: 11px;
  font-weight: 900;
}

.account-progress {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: #e8effa;
}

.account-progress span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), #20b486);
}

.order-card strong {
  color: var(--ink);
  font-size: 16px;
  font-weight: 950;
  line-height: 1.2;
}

.order-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.order-card-muted {
  background: #f7fbff;
}

.account-address-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.account-address-form .btn {
  min-height: 48px;
  padding: 0 16px;
}

.account-address-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.account-address-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 42px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #ffffff;
  color: #485568;
  font-size: 13px;
  font-weight: 800;
}

.account-address-list button {
  flex: 0 0 auto;
  border: 0;
  background: transparent;
  color: #667085;
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 900;
}

.account-address-list .empty {
  justify-content: flex-start;
  color: var(--muted);
}

.order-request {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(420px, 1.22fr);
  gap: 22px;
  align-items: stretch;
  margin-top: 48px;
}

.order-request-intro,
.order-request-form {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.order-request-intro {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  padding: 34px;
  background:
    radial-gradient(circle at 14% 12%, rgba(34, 105, 218, 0.14), transparent 30%),
    linear-gradient(135deg, #ffffff 0%, #eef6ff 100%);
}

.order-request-intro > span {
  display: inline-flex;
  width: fit-content;
  min-height: 30px;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  background: #e9f6f2;
  color: #13755d;
  font-size: 12px;
  font-weight: 950;
}

.order-request-intro h1 {
  max-width: 420px;
  margin: 0;
  color: var(--ink);
  font-size: 48px;
  font-weight: 950;
  line-height: 1;
}

.order-request-intro p {
  max-width: 390px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  font-weight: 760;
}

.order-request-contact {
  display: inline-flex;
  width: fit-content;
  min-height: 44px;
  align-items: center;
  padding: 0 16px;
  border: 1px solid rgba(34, 105, 218, 0.22);
  border-radius: 999px;
  background: #ffffff;
  color: var(--blue);
  font-size: 14px;
  font-weight: 950;
  box-shadow: 0 12px 24px rgba(34, 105, 218, 0.1);
}

.order-request-form {
  display: grid;
  gap: 16px;
  padding: 28px;
}

.order-request-form label {
  display: grid;
  gap: 8px;
  color: #485568;
  font-size: 13px;
  font-weight: 850;
}

.order-request-form input,
.order-request-form textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid #d7e2f3;
  border-radius: 14px;
  background: #ffffff;
  color: var(--ink);
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  outline: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.order-request-form input {
  min-height: 50px;
  padding: 0 14px;
}

.order-request-form textarea {
  min-height: 138px;
  padding: 14px;
  resize: vertical;
}

.order-request-form input:focus,
.order-request-form textarea:focus {
  border-color: rgba(34, 105, 218, 0.72);
  box-shadow: 0 0 0 4px rgba(34, 105, 218, 0.1);
}

.order-request-form .btn {
  width: 100%;
  margin-top: 2px;
}

.order-request-form .btn:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.order-payment-card,
.payment-return-card {
  display: grid;
  gap: 14px;
  padding: 20px;
  border: 1px solid rgba(34, 105, 218, 0.16);
  border-radius: 20px;
  background:
    radial-gradient(circle at 90% 12%, rgba(34, 105, 218, 0.14), transparent 34%),
    #f8fbff;
}

.order-payment-card[hidden] {
  display: none;
}

.order-payment-card > span,
.payment-return-card > span {
  display: inline-flex;
  width: fit-content;
  min-height: 28px;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(34, 105, 218, 0.1);
  color: var(--blue);
  font-size: 12px;
  font-weight: 950;
}

.order-payment-card strong {
  color: var(--ink);
  font-size: 24px;
  font-weight: 950;
  line-height: 1.1;
}

.order-payment-card p,
.payment-return-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 780;
  line-height: 1.42;
}

.order-payment-toggle {
  display: flex !important;
  grid-template-columns: none !important;
  flex-direction: row !important;
  gap: 10px !important;
  align-items: flex-start;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}

.order-payment-toggle input {
  width: 18px;
  height: 18px;
  min-height: 18px;
  margin: 2px 0 0;
  padding: 0;
  accent-color: var(--blue);
}

.payment-return-page {
  min-height: 100vh;
}

.payment-return-card {
  width: min(100%, 720px);
  margin: 70px auto 0;
  padding: 34px;
  border-color: rgba(199, 214, 235, 0.9);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.payment-return-card h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(34px, 6vw, 58px);
  font-weight: 950;
  line-height: 1.02;
}

.payment-return-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.about-page .header {
  margin-bottom: 34px;
}

.about-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 348px);
  gap: 44px;
  align-items: center;
  padding: 54px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    radial-gradient(circle at 92% 14%, rgba(32, 180, 134, 0.13), transparent 26%),
    linear-gradient(135deg, #ffffff 0%, #f2f7ff 100%);
  box-shadow: var(--shadow);
}

.about-hero > div {
  display: grid;
  align-content: center;
  gap: 18px;
}

.about-hero > div > span,
.about-copy > span,
.work-cases-heading > span {
  display: inline-flex;
  width: fit-content;
  min-height: 30px;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  background: #e9f6f2;
  color: #13755d;
  font-size: 12px;
  font-weight: 950;
}

.about-hero h1 {
  max-width: 710px;
  font-size: 42px;
  line-height: 1.08;
  text-align: left;
}

.about-hero p {
  max-width: 660px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  font-weight: 750;
}

.about-hero aside {
  display: grid;
  align-content: center;
  gap: 8px;
  min-width: 0;
  padding: 28px;
  border-radius: 22px;
  background: var(--blue);
  color: #ffffff;
  box-shadow: 0 20px 34px rgba(34, 105, 218, 0.22);
}

.about-hero aside strong {
  font-size: 54px;
  font-weight: 950;
  line-height: 1;
}

.about-hero aside span {
  max-width: 180px;
  font-size: 14px;
  font-weight: 850;
}

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

.about-trust-panel {
  align-self: center;
  gap: 18px;
  min-height: 0;
  overflow: hidden;
  padding: 24px;
  border: 1px solid rgba(139, 184, 255, 0.34);
  background:
    linear-gradient(180deg, rgba(34, 105, 218, 0.96), rgba(21, 86, 194, 0.92));
}

.about-trust-panel-head {
  display: grid;
  gap: 8px;
  padding-bottom: 2px;
}

.about-hero .about-trust-panel-head span {
  max-width: none;
  color: rgba(255, 255, 255, 0.74);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.about-hero .about-trust-panel-head strong {
  color: #ffffff;
  font-size: 36px;
  font-weight: 950;
  line-height: 0.96;
}

.about-trust-panel dl {
  display: grid;
  gap: 12px;
  margin: 0;
}

.about-trust-panel dl div {
  display: grid;
  gap: 6px;
  padding: 15px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.about-trust-panel dt {
  color: #ffffff;
  font-size: 27px;
  font-weight: 950;
  line-height: 1.03;
  overflow-wrap: anywhere;
}

.about-trust-panel dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13.5px;
  font-weight: 820;
  line-height: 1.35;
}

.about-story {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(520px, 1.28fr);
  gap: 22px;
  margin-top: 34px;
}

.about-copy,
.about-cards article,
.about-principles {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 16px 34px rgba(42, 77, 123, 0.08);
}

.about-copy {
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 28px;
}

.about-copy h2,
.about-principles h2 {
  font-size: 30px;
  line-height: 1.08;
  text-align: left;
}

.about-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 750;
}

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

.about-cards article {
  display: grid;
  align-content: start;
  gap: 12px;
  min-width: 0;
  padding: 24px;
}

.about-cards span {
  color: var(--blue);
  font-size: 13px;
  font-weight: 950;
}

.about-cards h3 {
  margin: 0;
  color: var(--ink);
  font-size: 18px;
  font-weight: 950;
  line-height: 1.15;
}

.about-cards p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.about-service-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 22px;
  overflow: hidden;
  border: 1px solid var(--theme-block-border);
  border-radius: 12px;
  background:
    linear-gradient(90deg, rgba(34, 105, 218, 0.1), rgba(32, 180, 134, 0.08)),
    var(--theme-surface-soft);
}

.about-service-flow span {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 920;
  line-height: 1.18;
  text-align: center;
}

.about-service-flow span + span {
  border-left: 1px solid var(--theme-block-border);
}

.map-points {
  display: grid;
  gap: 24px;
  margin-top: 34px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    radial-gradient(circle at 12% 18%, rgba(34, 105, 218, 0.1), transparent 32%),
    linear-gradient(135deg, #ffffff 0%, #f4f9ff 100%);
  box-shadow: var(--shadow);
}

.map-points-heading {
  display: grid;
  gap: 8px;
  max-width: 720px;
}

.map-points-heading > span {
  display: inline-flex;
  width: fit-content;
  min-height: 30px;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 12px;
  font-weight: 950;
}

.map-points-heading h2 {
  font-size: 34px;
  line-height: 1.08;
  text-align: left;
}

.map-points-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 750;
}

.map-embed {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  border: 1px solid #dce8f7;
  border-radius: 24px;
  background: #eaf2fb;
  box-shadow: 0 18px 36px rgba(42, 77, 123, 0.1);
}

.interactive-map {
  width: 100%;
  height: 420px;
  min-height: inherit;
}

.yandex-map {
  display: block;
  border: 0;
}

.map-fallback {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 850;
}

.map-popup {
  display: grid;
  gap: 4px;
}

.map-popup strong {
  color: var(--ink);
  font-size: 14px;
  font-weight: 950;
}

.map-popup span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
}

.map-popup a {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.map-points-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.map-point-card {
  position: relative;
  display: grid;
  min-height: 210px;
  align-content: start;
  gap: 10px;
  overflow: hidden;
  padding: 24px;
  border: 1px solid #dce8f7;
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(34, 105, 218, 0.1), rgba(255, 255, 255, 0) 44%),
    #ffffff;
  box-shadow: 0 16px 34px rgba(42, 77, 123, 0.08);
}

.map-point-card::after {
  position: absolute;
  right: -28px;
  bottom: -36px;
  width: 132px;
  height: 132px;
  border-radius: 50%;
  content: "";
  background:
    radial-gradient(circle at 50% 36%, #ffffff 0 10px, transparent 11px),
    linear-gradient(135deg, var(--blue), #20b486);
  opacity: 0.16;
}

.map-point-card span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--blue), #20b486);
  color: #ffffff;
  box-shadow: 0 12px 20px rgba(34, 105, 218, 0.18);
  font-size: 14px;
  font-weight: 950;
}

.map-point-card strong {
  max-width: 230px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 950;
  line-height: 1.15;
}

.map-point-card small {
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.map-point-card em {
  position: relative;
  z-index: 1;
  width: fit-content;
  margin-top: auto;
  color: var(--blue);
  font-size: 13px;
  font-style: normal;
  font-weight: 950;
}

.work-cases {
  display: grid;
  gap: 24px;
  margin-top: 34px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(243, 248, 255, 0.9)),
    #ffffff;
  box-shadow: var(--shadow);
}

.work-cases-heading {
  display: grid;
  gap: 8px;
  max-width: 720px;
}

.work-cases-heading h2 {
  font-size: 34px;
  line-height: 1.08;
  text-align: left;
}

.work-cases-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 750;
}

.work-cases-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.work-case-card {
  display: grid;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 16px 34px rgba(42, 77, 123, 0.08);
}

.case-media {
  position: relative;
  aspect-ratio: 16 / 10.5;
  overflow: hidden;
  background: #e9f1fb;
}

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

.case-labels {
  position: absolute;
  inset: 14px 14px auto;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.case-labels span {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--blue);
  box-shadow: 0 8px 18px rgba(18, 51, 91, 0.12);
  font-size: 11px;
  font-weight: 950;
}

.case-content {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 22px;
}

.case-content h3 {
  margin: 0;
  color: var(--ink);
  font-size: 20px;
  font-weight: 950;
  line-height: 1.15;
}

.case-content ul {
  display: grid;
  gap: 12px;
  min-height: 108px;
  margin: 0;
  padding: 0;
  color: #4a5669;
  font-size: 14px;
  font-weight: 750;
  list-style: none;
}

.case-content li {
  position: relative;
  padding-left: 20px;
}

.case-content li::before {
  position: absolute;
  left: 0;
  top: 0.48em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  content: "";
  background: linear-gradient(135deg, #ffd447, #20b486);
}

.case-content strong {
  color: var(--ink);
}

.case-content .btn {
  width: 100%;
  min-height: 50px;
  padding: 0 18px;
}

.about-principles {
  display: grid;
  gap: 22px;
  margin-top: 34px;
  padding: 30px;
}

.about-principles > div {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.about-principles article {
  min-width: 0;
  padding: 18px;
  border-radius: 18px;
  background: #f7fbff;
}

.about-principles strong {
  display: block;
  color: var(--blue);
  font-size: 16px;
  font-weight: 950;
}

.about-principles p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.privacy-page {
  display: grid;
  gap: 18px;
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.privacy-page > span {
  display: inline-flex;
  width: fit-content;
  min-height: 30px;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  background: #e9f6f2;
  color: #13755d;
  font-size: 12px;
  font-weight: 950;
}

.privacy-page h1 {
  max-width: 760px;
  margin: 0;
  color: var(--ink);
  font-size: 44px;
  font-weight: 950;
  line-height: 1.05;
}

.privacy-page > p,
.privacy-page article p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 750;
}

.privacy-page article {
  display: grid;
  gap: 8px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.privacy-page article h2 {
  font-size: 20px;
  text-align: left;
}

.privacy-page a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.testimonials {
  margin-top: 52px;
}

.testimonials-heading {
  display: grid;
  justify-items: center;
  gap: 8px;
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.testimonials-heading > span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 12px;
  font-weight: 950;
}

.testimonials-heading h2 {
  font-size: 34px;
}

.testimonials-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
}

.reviews-window {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
  margin-top: 26px;
  padding: 0;
}

.review-card {
  position: relative;
  display: grid;
  grid-column: span 2;
  min-height: 330px;
  align-content: space-between;
  gap: 18px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(34, 105, 218, 0.05), rgba(255, 255, 255, 0) 34%),
    #ffffff;
  box-shadow: 0 16px 34px rgba(42, 77, 123, 0.08);
}

.reviews-window .review-card:nth-last-child(2):nth-child(4) {
  grid-column: 2 / span 2;
}

.reviews-window .review-card:last-child:nth-child(5) {
  grid-column: 4 / span 2;
}

.review-card::before {
  position: absolute;
  top: 20px;
  right: 22px;
  color: rgba(34, 105, 218, 0.12);
  content: "”";
  font-family: Georgia, serif;
  font-size: 70px;
  line-height: 1;
}

.review-stars {
  display: inline-flex;
  width: fit-content;
  background: transparent;
  color: #f2b705;
  font-size: 15px;
  font-weight: 950;
  letter-spacing: 1px;
  line-height: 1;
}

.review-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #445166;
  font-size: 15px;
  font-weight: 700;
}

.review-card footer {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
}

.review-avatar {
  display: block;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 3px solid #ffffff;
  object-fit: cover;
  box-shadow: 0 10px 20px rgba(34, 105, 218, 0.18);
}

.review-card strong {
  display: block;
  color: var(--ink);
  font-size: 16px;
  font-weight: 950;
}

.review-card small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
}

.video-reviews {
  margin-top: 24px;
}

.video-reviews-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
}

.video-reviews-heading span {
  color: var(--ink);
  font-size: 20px;
  font-weight: 950;
}

.video-reviews-heading p {
  max-width: 420px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  text-align: right;
}

.video-review-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(180px, 230px));
  justify-content: center;
  gap: 16px;
}

.video-review-card {
  display: grid;
  gap: 14px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(32, 180, 134, 0.08), rgba(255, 255, 255, 0) 42%),
    #ffffff;
  box-shadow: 0 16px 34px rgba(42, 77, 123, 0.08);
}

.video-review-media {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: #0b1220;
}

.video-review-card video,
.video-review-poster,
.video-review-poster img {
  display: block;
  width: 100%;
  height: 290px;
  max-height: 290px;
}

.video-review-card video {
  border-radius: 16px;
  background: #0b1220;
  object-fit: cover;
}

.video-review-poster {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: 16px;
  background: #0b1220;
  cursor: pointer;
  transition:
    opacity 0.28s ease,
    visibility 0.28s ease;
}

.video-review-poster img {
  object-fit: cover;
}

.video-review-poster span {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.22);
  transform: translate(-50%, -50%);
}

.video-review-poster span::before {
  width: 0;
  height: 0;
  margin-left: 4px;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 16px solid var(--blue);
  content: "";
}

.video-review-media.is-playing .video-review-poster,
.video-review-media.is-started .video-review-poster {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.video-review-card strong {
  display: block;
  color: var(--ink);
  font-size: 16px;
  font-weight: 950;
}

.video-review-card small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
}

.benefits {
  display: grid;
  grid-template-columns: minmax(220px, 0.44fr) minmax(520px, 1fr);
  gap: 22px;
  align-items: start;
  margin-top: 30px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    radial-gradient(circle at 8% 12%, rgba(34, 105, 218, 0.1), transparent 30%),
    linear-gradient(135deg, #ffffff 0%, #f3f8ff 100%);
  box-shadow: var(--shadow);
}

.benefits-heading {
  position: sticky;
  top: 24px;
  display: grid;
  gap: 12px;
  align-content: start;
}

.benefits-heading > span {
  display: inline-flex;
  width: fit-content;
  min-height: 30px;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 12px;
  font-weight: 950;
}

.benefits-heading h2 {
  max-width: 270px;
  font-size: 34px;
  line-height: 1.06;
  text-align: left;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  min-width: 0;
}

.benefit-grid article {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 8px 14px;
  align-items: center;
  align-content: center;
  min-height: 106px;
  min-width: 0;
  padding: 16px 18px;
  border: 1px solid #dfe9f7;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 14px 28px rgba(42, 77, 123, 0.07);
}

.benefit-number {
  position: absolute;
  top: 14px;
  right: 16px;
  color: color-mix(in srgb, var(--blue) 34%, transparent);
  font-size: 25px;
  font-weight: 950;
  line-height: 1;
}

.benefit-grid svg {
  width: 38px;
  height: 38px;
  padding: 9px;
  border-radius: 14px;
  background: rgba(34, 105, 218, 0.14);
  color: var(--blue);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  box-shadow: none;
}

.benefit-grid h3 {
  margin: 0;
  padding-right: 38px;
  color: var(--ink);
  font-size: 17px;
  font-weight: 950;
  line-height: 1.15;
}

.benefit-grid p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 12.5px;
  font-weight: 760;
  line-height: 1.28;
}

.metrics {
  margin-top: 38px;
  padding: 34px 42px;
  transform: translateX(-14px);
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    radial-gradient(circle at 92% 14%, rgba(34, 105, 218, 0.1), transparent 26%),
    #ffffff;
  box-shadow: var(--shadow);
}

.metrics-heading {
  display: grid;
  gap: 6px;
}

.metrics-heading span {
  color: #13755d;
  font-size: 12px;
  font-weight: 950;
}

.metrics-heading h2 {
  font-size: 32px;
  text-align: left;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
  margin-top: 24px;
}

.metrics-grid article {
  min-width: 0;
}

.metrics-grid strong {
  display: block;
  color: var(--blue);
  font-size: 30px;
  font-weight: 950;
  line-height: 1;
}

.metrics-grid span {
  display: block;
  margin-top: 7px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 950;
  line-height: 1.18;
}

.metrics-grid p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
  line-height: 1.25;
}

.footer {
  margin-top: 48px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(34, 105, 218, 0.08), rgba(34, 105, 218, 0) 40%),
    #ffffff;
  box-shadow: var(--shadow);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.1fr 1fr 0.95fr;
  gap: 22px;
  padding: 34px;
}

.footer-brand,
.footer-card {
  min-width: 0;
}

.footer-brand {
  display: grid;
  align-content: start;
  gap: 18px;
  padding-right: 16px;
}

.footer-brand .brand {
  min-width: 0;
}

.footer-brand p,
.footer-note {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

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

.footer-brand h2 {
  margin: 0;
  color: var(--ink);
  font-size: 20px;
  font-weight: 950;
  text-align: left;
}

.payment-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.payment-icons span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 0 11px;
  border: 1px solid #d7e2f3;
  border-radius: 10px;
  background: #ffffff;
  color: #344054;
  font-size: 12px;
  font-weight: 950;
}

.payment-icons .payment-method {
  min-height: 34px;
  padding: 0 10px;
}

.payment-method-icon {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
}

.payment-method-icon .payment-card-shape {
  fill: rgba(34, 105, 218, 0.12);
  stroke: currentColor;
  stroke-width: 1.8;
}

.payment-method-icon .payment-card-line {
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.8;
}

.payment-method-icon .payment-mc-red {
  fill: #eb4d4b;
}

.payment-method-icon .payment-mc-yellow {
  fill: #f6b642;
}

.payment-yookassa {
  color: var(--blue) !important;
}

.payment-yookassa svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.footer-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.76);
}

.footer-card h2 {
  margin: 0 0 18px;
  font-size: 18px;
  text-align: left;
}

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

.footer-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 11px;
  align-items: start;
  color: #1f2937;
  font-size: 14px;
  font-weight: 800;
}

.footer-list svg,
.social-link svg {
  width: 22px;
  height: 22px;
  color: var(--blue);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.footer-list a {
  display: inline-block;
  max-width: 100%;
  overflow-wrap: anywhere;
  text-decoration: underline;
  text-decoration-color: rgba(34, 105, 218, 0.35);
  text-underline-offset: 3px;
}

.footer-contact-text {
  display: grid;
  min-width: 0;
  gap: 4px;
}

.footer-list small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
  line-height: 1.25;
}

.social-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-items: center;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  border-radius: 14px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 950;
  box-shadow: 0 12px 24px rgba(34, 105, 218, 0.15);
}

.social-link-telegram {
  width: 100%;
  min-width: 0;
  justify-self: stretch;
  padding: 0;
  border-radius: 14px;
  background: #229ed9;
}

.social-link-telegram svg {
  width: 25px;
  height: 25px;
  color: #ffffff;
  fill: currentColor;
  stroke-width: 0;
}

.social-link-max {
  background: #121826;
}

.social-link-max .max-logo {
  display: block;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  border-radius: 9px;
  object-fit: cover;
}

.footer-note {
  margin-top: 16px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 34px;
  border-top: 1px solid var(--line);
  background: #f7faff;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

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

.footer-bottom a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.header {
  padding: 12px 14px;
  border: 1px solid var(--theme-header-border);
  border-radius: 24px;
  background: var(--theme-header-bg);
  box-shadow: var(--theme-header-shadow);
  backdrop-filter: blur(16px);
}

.nav {
  color: var(--theme-header-muted);
}

.nav a:hover,
.phone:hover {
  color: var(--blue);
}

.phone {
  color: #111827;
}

.phone strong {
  color: #111827;
}

.phone small {
  color: #687386;
}

.header-photo-logo,
.account-header-link {
  border-color: var(--theme-block-border);
}

.nav-account-menu,
.order-options {
  border-color: var(--theme-block-border);
  background: var(--theme-popover-bg);
  box-shadow: var(--shadow);
}

.nav-account-menu a,
.nav-account-menu button {
  color: var(--theme-popover-text);
}

.nav-account-menu a:visited {
  color: var(--theme-popover-text);
}

.order-options::before {
  border-color: var(--theme-block-border);
  background: var(--theme-popover-bg);
}

.hero {
  border-color: var(--theme-block-border);
  border-radius: 30px;
  background: var(--theme-hero-bg);
  box-shadow: var(--shadow);
}

.hero h1,
h2,
.section-heading h2,
.testimonials-heading h2,
.account-heading h1,
.account-heading h2,
.order-request-intro h1,
.about-hero h1,
.privacy-page h1,
.footer-brand h2,
.footer-card h2,
.service-card h3,
.subscription-card h3,
.quick-points strong,
.steps-grid strong,
.account-block-title span,
.account-profile strong,
.account-stats strong,
.map-point-card strong,
.case-content h3,
.case-content strong,
.metrics-grid span {
  color: var(--ink);
}

.hero-note,
.hero-copy > p,
.hero-copy > .hero-note,
.quick-points span,
.service-card p,
.section-heading p,
.subscription-card ul,
.subscription-unavailable,
.account-heading p,
.account-login p,
.account-profile small,
.account-address-list li,
.order-request-intro p,
.about-hero p,
.about-copy p,
.about-cards p,
.map-points-heading p,
.map-point-card small,
.work-cases-heading p,
.case-content ul,
.about-principles p,
.privacy-page > p,
.privacy-page article p,
.testimonials-heading p,
.review-card p,
.review-card small,
.video-reviews-heading p,
.video-review-card small,
.benefits p,
.metrics-grid p,
.footer-brand p,
.footer-note,
.footer-bottom,
.footer-list li,
.footer-list small {
  color: var(--muted);
}

.section-panel,
.services,
.mini-app,
.account,
.about-hero,
.map-points,
.work-cases,
.benefits,
.privacy-page,
.footer {
  border-color: var(--theme-block-border);
  background: var(--theme-surface-bg);
  box-shadow: var(--shadow);
}

.service-card,
.subscription-card,
.mini-app-points article,
.account-login,
.account-dashboard,
.account-profile,
.account-stats article,
.account-panel,
.account-order-card,
.account-empty-card,
.account-orders,
.account-addresses,
.about-copy,
.about-cards article,
.about-principles,
.map-point-card,
.work-case-card,
.review-card,
.video-review-card,
.benefit-grid article,
.metrics,
.order-request-intro,
.order-request-form,
.footer-card {
  border-color: var(--theme-block-border);
  background: var(--theme-surface-bg);
  box-shadow: var(--shadow);
}

.account-page .account-layout-profile .account-dashboard {
  width: 100%;
  margin: 0;
  overflow: visible;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.account-page .account-profile,
.account-page .account-panel {
  background: transparent;
  box-shadow: none;
}

.quick-points svg,
.about-principles article,
.account-address-list li,
.account-order-card,
.account-empty-card,
.payment-icons span,
.footer-bottom {
  border-color: var(--theme-block-border);
  background: var(--theme-surface-soft);
}

.account-page .account-dashboard {
  gap: 22px;
}

.account-page .account-hero-card,
.account-page .account-featured-order,
.account-page .account-quick-actions,
.account-page .account-stats,
.account-page .account-panel {
  width: 100%;
}

.account-hero-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: start;
  padding: 24px;
  border: 1px solid var(--theme-block-border);
  border-radius: 22px;
  background: var(--theme-surface-bg);
  box-shadow: none;
}

.account-eyebrow {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 12px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(34, 105, 218, 0.12);
  color: var(--blue);
  font-size: 12px;
  font-weight: 950;
}

.account-heading small {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}

.account-hero-actions {
  display: grid;
  min-width: 190px;
  gap: 10px;
}

.account-status-pills {
  display: flex;
  flex-wrap: wrap;
  grid-column: 1 / -1;
  gap: 8px;
}

.account-status-pills span,
.account-current-head span,
.account-order-steps li span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.account-status-pills span {
  min-height: 30px;
  padding: 0 12px;
  border: 1px solid var(--theme-block-border);
  border-radius: 999px;
  background: var(--theme-surface-soft);
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.account-page .account-panel {
  display: grid;
  gap: 16px;
  padding: 22px;
  border: 1px solid var(--theme-block-border);
  border-radius: 22px;
  background: var(--theme-surface-bg);
  box-shadow: none;
}

.account-page .account-featured-order {
  padding: 24px;
  background:
    radial-gradient(circle at 92% 12%, rgba(34, 105, 218, 0.1), transparent 34%),
    var(--theme-surface-bg);
}

.account-current-card {
  display: grid;
  gap: 16px;
}

.account-current-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.account-current-head span {
  min-height: 30px;
  padding: 0 11px;
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 12px;
  font-weight: 950;
}

.account-current-head small {
  color: #13755d;
  font-size: 12px;
  font-weight: 950;
}

.account-current-card h2 {
  margin: 0;
  color: var(--ink);
  font-size: 28px;
  font-weight: 950;
  line-height: 1.08;
}

.account-current-card p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 750;
}

.account-current-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.account-current-meta span {
  display: grid;
  gap: 4px;
  min-width: 0;
  padding: 13px 14px;
  border: 1px solid var(--theme-block-border);
  border-radius: 16px;
  background: var(--theme-surface-soft);
  color: var(--ink);
  font-size: 13px;
  font-weight: 850;
}

.account-current-meta strong {
  color: var(--muted);
  font-size: 11px;
  font-weight: 850;
}

.account-progress-featured {
  height: 8px;
}

.account-order-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.account-order-steps li {
  display: grid;
  justify-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 850;
  text-align: center;
}

.account-order-steps li span {
  width: 28px;
  height: 28px;
  border: 1px solid var(--theme-block-border);
  border-radius: 999px;
  background: var(--theme-surface-soft);
  color: var(--muted);
  font-size: 11px;
  font-weight: 950;
}

.account-order-steps li.is-done,
.account-order-steps li.is-active {
  color: var(--ink);
}

.account-order-steps li.is-done span,
.account-order-steps li.is-active span {
  border-color: rgba(34, 105, 218, 0.3);
  background: var(--blue);
  color: #ffffff;
}

.account-current-actions,
.account-quick-actions {
  gap: 10px;
}

.account-quick-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.account-current-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 180px));
}

.account-current-actions a,
.account-quick-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(34, 105, 218, 0.28);
  border-radius: 999px;
  background: rgba(34, 105, 218, 0.08);
  color: var(--blue);
  font-size: 12px;
  font-weight: 950;
  text-align: center;
}

.account-page .account-stats {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 0 0 22px;
  border-bottom: 1px solid var(--theme-block-border);
}

.account-page .account-stats article,
.account-page .account-order-card,
.account-page .account-empty-card {
  box-shadow: none;
}

.account-page .account-dashboard-grid {
  gap: 16px;
}

.account-page .account-dashboard-grid .account-panel:nth-child(2) {
  margin-left: 0;
  padding-left: 22px;
  border-left: 1px solid var(--theme-block-border);
}

.account-page .account-dashboard-grid-secondary {
  grid-template-columns: minmax(0, 1fr);
  margin-top: 0;
  padding-top: 22px;
  border-top: 1px solid var(--theme-block-border);
}

.section-band .section-panel,
.section-band .services,
.section-band .mini-app,
.section-band .testimonials,
.section-band .benefits,
.section-band .subscriptions,
.section-band .metrics,
.floor-stack .section-panel,
.floor-stack .services {
  margin-top: 0;
  border-color: transparent;
  background: transparent;
  box-shadow: none;
}

.section-band .section-panel,
.section-band .services,
.section-band .testimonials,
.section-band .benefits,
.section-band .subscriptions,
.section-band .metrics,
.floor-stack .section-panel,
.floor-stack .services {
  padding: 0;
}

.floor-stack {
  display: grid;
  gap: 32px;
  min-width: 0;
}

.page-floor-start .hero,
.page-floor-start .section-connector,
.page-floor-final .footer {
  margin-top: 0;
}

.section-band .mini-app {
  padding: 12px 0;
}

.page-floor-start,
.section-band {
  gap: 42px;
  padding-top: 52px;
  padding-bottom: 56px;
  border-top-color: rgba(199, 214, 235, 0.78);
  border-bottom-color: rgba(199, 214, 235, 0.78);
}

.page-floor-start {
  margin-top: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(242, 248, 255, 0.78));
}

.section-band::before,
.page-floor-start::before {
  opacity: 0.3;
}

.section-band-process {
  background:
    linear-gradient(180deg, rgba(239, 248, 255, 0.92), rgba(232, 244, 249, 0.84));
}

.section-band-app {
  background:
    linear-gradient(180deg, rgba(245, 251, 255, 0.96), rgba(238, 249, 245, 0.82));
}

.section-band-proof {
  background:
    linear-gradient(180deg, rgba(250, 252, 255, 0.96), rgba(239, 245, 255, 0.84));
}

.section-band-plans {
  background:
    linear-gradient(180deg, rgba(244, 249, 255, 0.96), rgba(236, 244, 253, 0.86));
}

.page-floor-start .hero {
  margin-top: 0;
  border-color: transparent;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.page-floor-start .hero-copy {
  padding-left: 0;
}

.section-connector,
.section-connector-tight {
  border-radius: 12px;
  box-shadow: none;
}

.section-connector {
  background:
    linear-gradient(90deg, rgba(34, 105, 218, 0.1), rgba(32, 180, 134, 0.08)),
    rgba(255, 255, 255, 0.46);
}

.section-connector-tight {
  background: rgba(255, 255, 255, 0.38);
}

.quick-points article,
.steps-grid article,
.section-band .service-card,
.section-band .subscription-card,
.section-band .mini-app-points article,
.section-band .review-card,
.section-band .video-review-card,
.section-band .benefit-grid article,
.page-floor-final .footer-card {
  border-color: rgba(199, 214, 235, 0.86);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.58));
  box-shadow: none;
}

.quick-points article,
.section-band .service-card,
.section-band .mini-app-points article,
.section-band .review-card,
.section-band .video-review-card,
.section-band .benefit-grid article {
  border-radius: 16px;
}

.steps-grid article,
.section-band .subscription-card {
  border-radius: 18px;
}

.section-band .mini-app-media img {
  filter: drop-shadow(0 18px 24px rgba(15, 45, 92, 0.1));
}

.page-floor-final .footer {
  width: var(--app-viewport-width);
  margin: 10px 0 -56px calc(50% - var(--app-viewport-half));
  padding: 0 max(16px, calc((var(--app-viewport-width) - 1120px) / 2));
  border: 0;
  border-top: 1px solid rgba(139, 184, 255, 0.22);
  border-radius: 0;
  background:
    linear-gradient(90deg, rgba(34, 105, 218, 0.18), rgba(32, 180, 134, 0.1), rgba(34, 105, 218, 0.12)) top / 100% 4px no-repeat,
    radial-gradient(circle at 12% 0%, rgba(34, 105, 218, 0.22), transparent 34%),
    linear-gradient(180deg, #13233d 0%, #07111f 100%);
  color: #eaf2ff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.page-floor-final .footer-main,
.page-floor-final .footer-bottom {
  padding-inline: 0;
}

.page-floor-final .footer-main {
  padding-top: 42px;
  padding-bottom: 34px;
}

.page-floor-final .footer-brand h2,
.page-floor-final .footer-card h2,
.page-floor-final .footer-bottom strong {
  color: #ffffff;
}

.page-floor-final .footer-brand p,
.page-floor-final .footer-note,
.page-floor-final .footer-list li,
.page-floor-final .footer-list small,
.page-floor-final .footer-bottom {
  color: rgba(224, 236, 255, 0.72);
}

.page-floor-final .footer-card {
  border-color: rgba(139, 184, 255, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.055));
  box-shadow: none;
}

.page-floor-final .footer-list a,
.page-floor-final .footer-bottom a {
  color: #dceaff;
  text-decoration-color: rgba(139, 184, 255, 0.58);
}

.page-floor-final .footer-list svg {
  color: #8bb8ff;
}

.page-floor-final .payment-icons span {
  border-color: rgba(139, 184, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: #d7e7ff;
}

.page-floor-final .payment-yookassa {
  color: #8bb8ff !important;
}

.page-floor-final .footer-bottom {
  padding-top: 22px;
  padding-bottom: 24px;
  border-top-color: rgba(139, 184, 255, 0.16);
  background: transparent;
}

body[data-time-period="night"] .section-band,
body[data-time-period="night"] .page-floor-start,
body[data-time-period="night"] .account-page .account {
  background:
    radial-gradient(circle at 14% 10%, rgba(34, 105, 218, 0.13), transparent 30%),
    linear-gradient(180deg, rgba(17, 24, 39, 0.82), rgba(8, 13, 24, 0.46));
}

body[data-time-period="night"] .section-band::before,
body[data-time-period="night"] .page-floor-start::before,
body[data-time-period="night"] .account-page .account::before {
  background:
    radial-gradient(circle at 18% 20%, rgba(139, 184, 255, 0.08), transparent 26%),
    linear-gradient(120deg, rgba(139, 184, 255, 0.045), transparent 38%);
  opacity: 0.42;
}

body[data-time-period="night"] .section-connector {
  background:
    linear-gradient(90deg, rgba(34, 105, 218, 0.18), rgba(32, 180, 134, 0.08)),
    rgba(255, 255, 255, 0.06);
}

body[data-time-period="night"] .quick-points article,
body[data-time-period="night"] .steps-grid article,
body[data-time-period="night"] .section-band .service-card,
body[data-time-period="night"] .floor-stack .service-card,
body[data-time-period="night"] .section-band .subscription-card,
body[data-time-period="night"] .section-band .mini-app-points article,
body[data-time-period="night"] .section-band .review-card,
body[data-time-period="night"] .section-band .video-review-card,
body[data-time-period="night"] .section-band .benefit-grid article,
body[data-time-period="night"] .page-floor-final .footer-card {
  border-color: rgba(139, 184, 255, 0.2);
  background: var(--theme-surface-bg);
}

body[data-time-period="night"] .service-card .service-card-lead,
body[data-time-period="night"] .service-details > ul,
body[data-time-period="night"] .service-detail-list,
body[data-time-period="night"] .service-detail-group p,
body[data-time-period="night"] .service-detail-note {
  color: #c8d5e8;
}

body[data-time-period="night"] .service-detail-group h4,
body[data-time-period="night"] .service-detail-group li strong {
  color: #f8fbff;
}

body[data-time-period="night"] .service-detail-group {
  border-bottom-color: rgba(139, 184, 255, 0.16);
}

body[data-time-period="night"] .service-detail-note {
  border-color: rgba(139, 184, 255, 0.18);
  background: rgba(34, 105, 218, 0.12);
}

body[data-time-period="night"] .service-card .service-card-head h3 {
  color: #f8fbff;
}

body[data-time-period="night"] .service-meta span {
  border-color: rgba(64, 130, 232, 0.45);
  background: rgba(34, 105, 218, 0.16);
  color: #8bb8ff;
}

body[data-time-period="night"] .service-checklist li {
  color: #f2f7ff;
}

body[data-time-period="night"] .service-details summary {
  border-color: rgba(64, 130, 232, 0.58);
  background: rgba(34, 105, 218, 0.16);
  color: #8bb8ff;
}

body[data-time-period="night"] .service-details summary:hover,
body[data-time-period="night"] .service-details[open] summary {
  border-color: #8bb8ff;
  background: rgba(34, 105, 218, 0.78);
  color: #ffffff;
}

body[data-time-period="night"] .price-modal-panel {
  border-color: rgba(139, 184, 255, 0.24);
  background:
    radial-gradient(circle at 80% 0%, rgba(34, 105, 218, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(20, 31, 51, 0.98), rgba(13, 22, 38, 0.98));
}

body[data-time-period="night"] .price-modal-head h2,
body[data-time-period="night"] .price-info-card h3,
body[data-time-period="night"] .price-field,
body[data-time-period="night"] .price-levels legend,
body[data-time-period="night"] .price-rate-grid strong,
body[data-time-period="night"] .price-extra-list strong,
body[data-time-period="night"] .price-levels b {
  color: #f8fbff;
}

body[data-time-period="night"] .price-modal-head p,
body[data-time-period="night"] .price-rate-grid span,
body[data-time-period="night"] .price-rate-grid small,
body[data-time-period="night"] .price-extra-list span,
body[data-time-period="night"] .price-disclaimer,
body[data-time-period="night"] .price-levels small {
  color: #c8d5e8;
}

body[data-time-period="night"] .price-calculator,
body[data-time-period="night"] .price-info-card,
body[data-time-period="night"] .price-modal-close {
  border-color: rgba(139, 184, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
}

body[data-time-period="night"] .price-field input,
body[data-time-period="night"] .price-field select,
body[data-time-period="night"] .price-levels span,
body[data-time-period="night"] .price-rate-grid div,
body[data-time-period="night"] .price-extra-list button {
  border-color: rgba(139, 184, 255, 0.18);
  background: rgba(8, 16, 30, 0.72);
  color: #f8fbff;
}

body[data-time-period="night"] .price-extra-list button:hover,
body[data-time-period="night"] .price-extra-list button:focus-visible,
body[data-time-period="night"] .price-extra-list button.is-active {
  border-color: rgba(139, 184, 255, 0.44);
  background: rgba(34, 105, 218, 0.18);
  box-shadow: 0 0 0 3px rgba(34, 105, 218, 0.14);
}

.steps-grid p,
.payment-icons span {
  color: var(--muted);
}

.hero-art {
  background: var(--theme-hero-art-bg);
}

.hero-art::before {
  background: var(--theme-hero-art-fade);
}

.order-request-form input,
.order-request-form textarea,
.account-login input,
.account-address-form input,
.account-data-form input,
.account-data-form select,
.account-data-form textarea {
  border-color: var(--theme-block-border);
  background: var(--theme-field-bg);
  color: var(--ink);
}

.order-request-form input::placeholder,
.order-request-form textarea::placeholder,
.account-login input::placeholder,
.account-address-form input::placeholder,
.account-data-form input::placeholder,
.account-data-form textarea::placeholder {
  color: color-mix(in srgb, var(--muted) 78%, transparent);
}

body[data-time-period="night"] .header-photo-logo {
  background: #ffffff;
}

body[data-time-period="night"] .account-header-link {
  background: rgba(255, 255, 255, 0.08);
  color: #eaf2ff;
}

body[data-time-period="night"] .nav-account-menu {
  background: #0f172a;
}

body[data-time-period="night"] .order-options,
body[data-time-period="night"] .order-options::before {
  background: #0f172a;
}

body[data-time-period="night"] .nav-account-menu a,
body[data-time-period="night"] .nav-account-menu a:visited,
body[data-time-period="night"] .nav-account-menu button {
  color: #e7eefb;
}

body[data-time-period="night"] .account-header-link[aria-current="page"],
body[data-time-period="night"] .account-mode-switch,
body[data-time-period="night"] .subscription-tag,
body[data-time-period="night"] .section-heading > span,
body[data-time-period="night"] .service-label,
body[data-time-period="night"] .steps-heading > span,
body[data-time-period="night"] .mini-app-copy > span,
body[data-time-period="night"] .benefits-heading > span,
body[data-time-period="night"] .account-heading > span,
body[data-time-period="night"] .account-label,
body[data-time-period="night"] .order-request-intro > span,
body[data-time-period="night"] .about-hero > div > span,
body[data-time-period="night"] .about-copy > span,
body[data-time-period="night"] .work-cases-heading > span,
body[data-time-period="night"] .privacy-page > span,
body[data-time-period="night"] .testimonials-heading > span {
  background: rgba(34, 105, 218, 0.16);
  color: #8bb8ff;
}

body[data-time-period="night"] .btn-outline,
body[data-time-period="night"] .order-request-contact,
body[data-time-period="night"] .subscription-disabled,
body[data-time-period="night"] .account-logout {
  border-color: rgba(34, 105, 218, 0.5);
  background: rgba(255, 255, 255, 0.08);
  color: #dceaff;
}

body[data-time-period="night"] .btn-outline:hover {
  background: rgba(34, 105, 218, 0.2);
  color: #ffffff;
}

body[data-time-period="night"] .mini-app-points article {
  border-color: rgba(64, 130, 232, 0.38);
  background:
    linear-gradient(135deg, rgba(34, 105, 218, 0.22), rgba(32, 180, 134, 0.08)),
    rgba(255, 255, 255, 0.06);
}

body[data-time-period="night"] .case-labels span {
  background: rgba(255, 255, 255, 0.12);
}

.about-page::before {
  display: none;
}

.about-floor {
  position: relative;
  display: grid;
  gap: 28px;
  width: var(--app-viewport-width);
  min-width: 0;
  margin: 0 0 0 calc(50% - var(--app-viewport-half));
  padding: 54px max(16px, calc((var(--app-viewport-width) - 1120px) / 2));
  overflow: hidden;
  border-top: 1px solid rgba(199, 214, 235, 0.78);
  background:
    radial-gradient(circle at 14% 8%, rgba(34, 105, 218, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(242, 248, 255, 0.78));
}

.about-floor + .about-floor {
  border-top-color: rgba(199, 214, 235, 0.56);
}

.about-floor > * {
  position: relative;
  z-index: 1;
}

.about-floor::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 88% 12%, rgba(32, 180, 134, 0.09), transparent 28%),
    linear-gradient(120deg, rgba(34, 105, 218, 0.035), transparent 40%);
  opacity: 0.72;
  pointer-events: none;
}

.about-floor-hero {
  margin-top: 24px;
  padding-top: 50px;
  padding-bottom: 56px;
}

.about-floor-approach {
  background:
    radial-gradient(circle at 10% 0%, rgba(32, 180, 134, 0.08), transparent 26%),
    linear-gradient(180deg, rgba(239, 248, 255, 0.94), rgba(232, 244, 249, 0.84));
}

.about-floor-map {
  background:
    radial-gradient(circle at 84% 8%, rgba(34, 105, 218, 0.09), transparent 30%),
    linear-gradient(180deg, rgba(245, 251, 255, 0.96), rgba(238, 249, 245, 0.82));
}

.about-floor-cases {
  padding-bottom: 64px;
  background:
    radial-gradient(circle at 50% 0%, rgba(34, 105, 218, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(250, 252, 255, 0.96), rgba(239, 245, 255, 0.84));
}

.about-floor .about-hero,
.about-floor .about-story,
.about-floor .map-points,
.about-floor .work-cases,
.about-floor .about-principles {
  margin-top: 0;
}

.about-floor-hero .about-hero {
  padding: 18px 0;
  border-color: transparent;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.about-floor-approach .about-story {
  gap: 28px;
  padding: 32px;
  border: 1px solid rgba(199, 214, 235, 0.78);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: none;
}

.about-floor-approach .about-copy {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.about-floor-approach .about-cards article,
.about-floor-approach .about-principles article,
.about-floor-map .map-point-card,
.about-floor-cases .work-case-card {
  border-color: rgba(199, 214, 235, 0.82);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.62));
  box-shadow: none;
}

.about-floor-approach .about-principles {
  padding: 28px 30px;
  border: 1px solid rgba(199, 214, 235, 0.78);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: none;
}

.about-floor-approach .about-principles article {
  padding: 18px;
}

.about-floor-map .map-points,
.about-floor-cases .work-cases {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.about-floor-map .map-embed {
  border-color: rgba(199, 214, 235, 0.92);
  box-shadow: none;
}

.about-floor-map .map-point-card {
  min-height: 174px;
}

.about-floor-cases .work-case-card {
  border-radius: 18px;
}

body[data-time-period="night"] .about-floor {
  border-top-color: rgba(139, 184, 255, 0.16);
  background:
    radial-gradient(circle at 14% 10%, rgba(34, 105, 218, 0.13), transparent 30%),
    linear-gradient(180deg, rgba(17, 24, 39, 0.82), rgba(8, 13, 24, 0.46));
}

body[data-time-period="night"] .about-floor::before {
  background:
    radial-gradient(circle at 18% 20%, rgba(139, 184, 255, 0.08), transparent 26%),
    linear-gradient(120deg, rgba(139, 184, 255, 0.045), transparent 38%);
  opacity: 0.42;
}

body[data-time-period="night"] .about-floor-approach .about-story,
body[data-time-period="night"] .about-floor-approach .about-principles,
body[data-time-period="night"] .about-floor-approach .about-cards article,
body[data-time-period="night"] .about-floor-approach .about-principles article,
body[data-time-period="night"] .about-floor-map .map-point-card,
body[data-time-period="night"] .about-floor-cases .work-case-card {
  border-color: rgba(139, 184, 255, 0.2);
  background: var(--theme-surface-bg);
}

@media (max-width: 1020px) {
  .nav {
    order: 3;
    grid-column: 1 / -1;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero {
    grid-template-columns: minmax(300px, 0.9fr) minmax(350px, 1.1fr);
  }

  .hero h1 {
    font-size: 48px;
  }

  .account-layout,
  .account-workspace,
  .account-dashboard-grid,
  .order-request,
  .benefits,
  .about-story {
    grid-template-columns: 1fr;
  }

  .benefits-heading {
    position: static;
  }

  .account-dashboard-grid .account-panel:nth-child(2) {
    margin-top: 22px;
    margin-left: 0;
    padding-left: 0;
    border-top: 1px solid #dbe6f5;
    border-left: 0;
  }

  .account-page .account-dashboard-grid .account-panel:nth-child(2) {
    margin-top: 0;
    padding-left: 22px;
    border-top: 1px solid rgba(199, 214, 235, 0.86);
    border-left: 1px solid rgba(199, 214, 235, 0.86);
  }

  .about-cards,
  .map-points-grid,
  .work-cases-grid,
  .about-principles > div {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-grid,
  .subscription-grid,
  .benefit-grid,
  .metrics-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

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

  .reviews-window .review-card,
  .reviews-window .review-card:nth-last-child(2):nth-child(4),
  .reviews-window .review-card:last-child:nth-child(5) {
    grid-column: auto;
  }

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

@media (max-width: 760px) {
  .site-shell {
    width: min(100% - 24px, 620px);
    padding-top: 18px;
  }

  .header {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .brand {
    min-width: 0;
  }

  .brand strong {
    font-size: 26px;
  }

  .brand small {
    font-size: 8px;
  }

  .header-actions {
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
  }

  .phone strong {
    font-size: 13px;
  }

  .header-photo-logo {
    width: 150px;
    height: 50px;
    border-radius: 12px;
  }

  .nav {
    width: 100%;
    justify-content: center;
    gap: 18px;
    font-size: 12px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
    margin-top: 16px;
  }

  .hero-copy {
    padding: 28px 12px 0;
  }

  .hero h1 {
    max-width: 100%;
    font-size: 42px;
  }

  .hero-copy > p {
    font-size: 15px;
  }

  .hero-buttons {
    gap: 10px;
  }

  .hero-order-action {
    flex: 1 1 190px;
  }

  .hero-order-action .btn {
    width: 100%;
  }

  .hero-buttons .btn {
    flex: 1 1 190px;
  }

  .quick-points {
    gap: 8px;
    max-width: none;
  }

  .quick-points strong,
  .quick-points span {
    font-size: 11px;
  }

  .hero-art {
    min-height: 300px;
    margin-top: 18px;
    border-radius: 42px;
  }

  .hero-art::before {
    display: none;
  }

  .hero-art img {
    min-height: 330px;
    object-position: 60% 55%;
  }

  .section-panel {
    padding: 24px 16px 28px;
    border-radius: 18px;
  }

  .steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }

  .steps-grid article::after {
    display: none;
  }

  .service-grid,
  .subscription-grid,
  .benefit-grid,
  .metrics-grid {
    grid-template-columns: 1fr;
  }

  .benefits {
    gap: 18px;
    margin-top: 26px;
    padding: 22px 16px;
  }

  .benefit-grid {
    gap: 10px;
  }

  .benefit-grid article {
    min-height: 94px;
    padding: 14px 16px;
  }

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

  .service-card-body {
    padding: 22px;
  }

  .service-card .service-card-lead {
    min-height: 0;
    text-align: left;
  }

  .service-meta {
    margin-top: -4px;
  }

  .services-heading-actions,
  .service-price-button-top {
    width: 100%;
  }

  .price-modal {
    padding: 12px;
    align-items: end;
  }

  .price-modal-panel {
    width: 100%;
    max-height: 88vh;
    padding: 24px 16px 18px;
    border-radius: 24px 24px 18px 18px;
  }

  .price-modal-close {
    top: 14px;
    right: 14px;
    width: 42px;
    height: 42px;
  }

  .price-modal-head {
    padding-right: 52px;
  }

  .price-modal-head h2 {
    font-size: 28px;
  }

  .price-modal-layout,
  .price-area-fields,
  .price-item-fields,
  .price-levels {
    grid-template-columns: 1fr;
  }

  .price-actions .btn {
    flex-basis: 100%;
  }

  .metrics {
    transform: none;
    padding: 26px 22px;
  }

  .metrics-heading h2 {
    font-size: 28px;
  }

  .subscriptions {
    padding-top: 28px;
  }

  .section-band-plans {
    justify-items: center;
  }

  .section-band-plans .subscriptions {
    width: min(100%, 440px);
    margin-right: auto;
    margin-left: auto;
  }

  .section-band-plans .subscription-grid {
    width: min(100%, 390px);
    margin-right: auto;
    margin-left: auto;
    justify-items: stretch;
  }

  .section-heading h2 {
    font-size: 28px;
  }

  .subscription-card {
    width: 100%;
    justify-self: center;
    min-height: 0;
  }

  .subscription-card h3,
  .subscription-card ul {
    min-height: 0;
  }

  .mini-app {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 30px 24px;
  }

  .mini-app h2 {
    font-size: 30px;
  }

  .mini-app-media img {
    width: min(100%, 420px);
    margin: 0 auto;
  }

  .account {
    padding: 30px 24px;
    border-radius: 22px;
  }

  .account-page .account {
    padding: 38px max(16px, calc((var(--app-viewport-width) - 760px) / 2)) 46px;
  }

  .account-page .account-layout-profile {
    padding: 30px 24px;
    border-radius: 24px;
  }

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

  .account-hero-actions,
  .account-current-actions,
  .account-quick-actions {
    width: 100%;
    min-width: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .account-current-meta {
    grid-template-columns: 1fr;
  }

  .auth-section {
    min-height: calc(100vh - 180px);
    padding: 32px 12px;
  }

  .auth-card {
    padding: 24px;
    border-radius: 22px;
  }

  .account-heading h1,
  .account-heading h2 {
    font-size: 30px;
  }

  .order-request {
    margin-top: 30px;
  }

  .order-request-intro,
  .order-request-form {
    padding: 26px 22px;
    border-radius: 22px;
  }

  .order-request-intro h1 {
    font-size: 34px;
  }

  .account-stats {
    grid-template-columns: 1fr;
  }

  .account-page .account-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-hero {
    grid-template-columns: 1fr;
    padding: 30px 24px;
  }

  .about-hero-actions .btn {
    flex: 1 1 190px;
  }

  .about-hero h1 {
    font-size: 32px;
  }

  .work-cases {
    padding: 28px 24px;
  }

  .map-points {
    padding: 28px 24px;
  }

  .map-embed {
    min-height: 360px;
    border-radius: 20px;
  }

  .interactive-map {
    height: 360px;
  }

  .map-points-heading h2 {
    font-size: 28px;
  }

  .work-cases-heading h2 {
    font-size: 28px;
  }

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

  .about-service-flow span + span {
    border-top: 1px solid var(--theme-block-border);
    border-left: 0;
  }

  .testimonials-heading h2 {
    font-size: 28px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .footer-brand {
    padding-right: 0;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    padding: 20px 24px;
  }
}

@media (max-width: 720px) {
  .site-shell {
    width: 100%;
    max-width: 100%;
  }

  .header-actions {
    align-items: center;
    flex-direction: row;
    justify-content: center;
  }

  .phone {
    justify-content: center;
  }

  .header-photo-logo {
    align-self: center;
  }

  .account-header-link {
    width: auto;
    justify-content: center;
  }

  .footer {
    border-radius: 18px;
  }

  .footer-main {
    padding: 18px;
  }

  .footer-card {
    padding: 18px;
  }

  .footer-brand .btn,
  .social-links {
    width: 100%;
  }

  .section-heading {
    justify-items: center;
    text-align: center;
  }

  .section-heading h2 {
    font-size: 26px;
    text-align: center;
  }

  .benefits {
    gap: 16px;
    margin-top: 22px;
    padding: 18px 12px;
  }

  .benefits-heading {
    justify-items: center;
    text-align: center;
  }

  .benefits-heading h2 {
    max-width: 100%;
    font-size: 27px;
    text-align: center;
  }

  .benefit-grid {
    gap: 8px;
  }

  .benefit-grid article {
    min-height: 78px;
    gap: 6px 12px;
    padding: 12px 14px;
    border-radius: 14px;
  }

  .benefit-number {
    top: 12px;
    right: 14px;
    font-size: 24px;
  }

  .benefit-grid svg {
    width: 36px;
    height: 36px;
    padding: 8px;
    border-radius: 13px;
  }

  .benefit-grid h3 {
    padding-right: 36px;
    font-size: 16px;
    line-height: 1.12;
  }

  .benefit-grid p {
    margin-top: 3px;
    font-size: 12px;
    line-height: 1.2;
  }

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

  .mini-app {
    padding: 22px 18px;
    border-radius: 20px;
  }

  .mini-app h2 {
    font-size: 28px;
  }

  .mini-app-actions .btn {
    width: 100%;
  }

  .mini-app-points {
    grid-template-columns: 1fr;
  }

  .account {
    padding: 22px 18px;
  }

  .account-page .account {
    margin-top: 22px;
    padding: 26px 12px 34px;
  }

  .account-page .account-layout-profile {
    padding: 22px 18px;
    border-radius: 20px;
  }

  .account-hero-card,
  .account-page .account-featured-order,
  .account-page .account-panel {
    padding: 18px;
  }

  .account-hero-actions,
  .account-current-actions,
  .account-quick-actions,
  .account-page .account-stats {
    grid-template-columns: 1fr;
  }

  .account-current-card h2 {
    font-size: 22px;
  }

  .account-order-steps {
    grid-template-columns: 1fr;
  }

  .account-order-steps li {
    grid-template-columns: 28px minmax(0, 1fr);
    justify-items: start;
    align-items: center;
    text-align: left;
  }

  .account-heading {
    justify-items: start;
    text-align: left;
  }

  .account-heading h1,
  .account-heading h2 {
    font-size: 28px;
  }

  .account-login,
  .account-dashboard {
    padding: 18px;
  }

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

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

  .account-logout {
    grid-column: 1 / -1;
    width: 100%;
  }

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

  .account-address-form .btn {
    width: 100%;
  }

  .about-hero {
    padding: 24px 18px;
  }

  .about-hero h1 {
    font-size: 29px;
  }

  .about-hero p {
    font-size: 15px;
  }

  .about-cards,
  .map-points-grid,
  .work-cases-grid,
  .about-principles > div {
    grid-template-columns: 1fr;
  }

  .about-copy,
  .about-cards article,
  .map-points,
  .work-cases,
  .about-principles {
    padding: 20px;
  }

  .map-embed {
    min-height: 320px;
    border-radius: 18px;
  }

  .interactive-map {
    height: 320px;
  }

  .case-content {
    padding: 20px;
  }

  .testimonials-heading {
    justify-items: center;
    text-align: center;
  }

  .testimonials-heading h2 {
    font-size: 26px;
    text-align: center;
  }

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

  .video-reviews-heading {
    display: grid;
    align-items: start;
  }

  .video-reviews-heading p {
    text-align: left;
  }

  .video-review-grid {
    grid-template-columns: minmax(0, 240px);
    justify-content: start;
  }

  .video-review-card video {
    height: 310px;
    max-height: 310px;
  }

  .review-card {
    min-height: 0;
    padding: 22px;
  }

  .subscription-card {
    padding: 20px;
  }

  .social-links {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 36px;
  }

  .quick-points {
    grid-template-columns: 1fr;
  }

  .order-options {
    left: 0;
    top: calc(100% + 12px);
    width: min(100%, 320px);
    transform: translateY(8px);
  }

  .hero-order-action.is-popup-open .order-options {
    transform: translateY(0);
  }

  .order-options::before {
    left: 28px;
    top: -7px;
    border: 0;
    border-left: 1px solid var(--line);
    border-top: 1px solid var(--line);
    transform: rotate(45deg);
  }

  .quick-points article {
    grid-template-columns: auto minmax(0, 1fr);
    justify-items: start;
    text-align: left;
  }

  .quick-points svg {
    grid-row: 1 / span 2;
  }
}

@media (max-width: 1020px) {
  .section-band,
  .page-floor-start {
    padding-inline: max(16px, calc((var(--app-viewport-width) - 920px) / 2));
  }

  .section-band .benefits {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .section-band,
  .page-floor-start {
    gap: 26px;
    margin-top: 0;
    padding: 28px 12px;
  }

  .page-floor-start {
    margin-top: 28px;
  }

  .section-connector {
    grid-template-columns: 1fr;
    margin-top: 18px;
  }

  .section-connector span + span {
    border-top: 1px solid var(--theme-block-border);
    border-left: 0;
  }

  .section-band .mini-app {
    padding: 0;
  }

  .page-floor-final .footer {
    margin-bottom: -28px;
    padding-inline: 18px;
  }

  .page-floor-final .footer-main {
    padding-top: 32px;
    padding-bottom: 26px;
  }

  .page-floor-final .footer-bottom {
    padding-top: 20px;
    padding-bottom: 22px;
  }

  .page-floor-start .hero-copy {
    padding: 28px 12px 0;
  }
}

@media (max-width: 920px) {
  .site-shell {
    width: 100%;
    max-width: 100%;
    padding-top: 12px;
  }

  .header {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 12px 10px 10px;
    border-radius: 20px;
  }

  .header-actions {
    order: 1;
    position: static;
    display: grid;
    width: 100%;
    min-height: 0;
    padding-top: 54px;
    grid-template-columns: 1fr;
    grid-template-areas: "account";
    align-items: center;
    justify-items: center;
    gap: 8px;
  }

  .phone {
    position: absolute;
    top: 17px;
    left: 50%;
    z-index: 1;
    grid-area: auto;
    justify-self: center;
    justify-content: center;
    width: max-content;
    max-width: 100%;
    flex: none;
    gap: 7px;
    margin-top: 0;
    transform: translateX(-50%);
  }

  .phone svg {
    width: 20px;
    height: 20px;
  }

  .phone strong {
    font-size: 13px;
  }

  .phone small {
    font-size: 10px;
  }

  .header-photo-logo {
    position: absolute;
    top: 12px;
    left: 10px;
    width: clamp(88px, 25vw, 96px);
    height: 40px;
    padding: 5px 7px;
  }

  .header-account {
    position: static;
    z-index: 2;
    grid-area: account;
    margin-top: 0;
    transform: none;
  }

  .account-header-link {
    min-height: 36px;
    padding: 0 12px;
    font-size: 11px;
  }

  .header-account .nav-account-menu {
    left: 50%;
    right: auto;
    width: min(190px, calc(var(--app-viewport-width) - 32px));
    transform: translate(-50%, 8px);
  }

  .header-account.is-popup-open .nav-account-menu {
    transform: translate(-50%, 0);
  }

  .account-header-link svg {
    width: 17px;
    height: 17px;
  }

  .nav {
    order: 2;
    width: 100%;
    flex-wrap: nowrap;
    gap: 0 7px;
    justify-content: center;
    overflow: visible;
    padding: 2px 0 0;
    font-size: 9.8px;
    line-height: 1.15;
  }

  .nav a,
  .nav-account-toggle {
    padding: 4px 0;
  }

  .page-floor-start {
    margin-top: 22px;
    padding: 24px 8px;
  }

  .section-band {
    gap: 22px;
    padding: 24px 8px;
  }

  .page-floor-start,
  .section-band {
    width: 100%;
    margin-right: 0;
    margin-left: 0;
    padding-left: max(8px, env(safe-area-inset-left));
    padding-right: max(8px, env(safe-area-inset-right));
  }

  .page-floor-start .hero-copy,
  .hero-copy {
    display: grid;
    justify-items: start;
    padding: 24px 16px 0;
  }

  .hero {
    margin-top: 14px;
    border-radius: 24px;
  }

  .hero h1 {
    font-size: 28px;
    line-height: 1.02;
  }

  .hero-copy > .hero-note,
  .hero-note {
    font-size: 12px;
    line-height: 1.25;
  }

  .hero-buttons {
    display: grid;
    grid-template-columns: 1fr;
    width: min(100%, 320px);
    max-width: 320px;
    gap: 10px;
    justify-items: center;
    justify-self: center;
    margin: 26px 0 0;
    transform: translateX(-10px);
  }

  .hero h1 {
    justify-self: stretch;
    width: 100%;
  }

  .quick-points {
    justify-self: center;
    width: auto;
  }

  .hero-order-action,
  .hero-buttons .btn {
    width: 100%;
    min-width: 0;
    flex: none;
    justify-content: center;
  }

  .btn {
    min-height: 48px;
    padding: 0 18px;
    font-size: 12px;
  }

  .btn-with-gift {
    padding-right: 50px;
  }

  .btn-gift {
    top: -21px;
    right: 4px;
    width: 52px;
    height: 52px;
    border-radius: 15px;
  }

  .btn-gift img {
    border-radius: 11px;
  }

  .btn-gift strong {
    right: -5px;
    bottom: -4px;
    min-width: 31px;
    height: 17px;
    padding: 0 6px;
    font-size: 9px;
  }

  .quick-points {
  width: auto;
  max-width: none;
  grid-template-columns: repeat(2, max-content);
  justify-content: center;
  justify-self: center;
  gap: 10px;
  margin-top: 28px;
}

.quick-points article {
  width: 148px;
  min-height: 92px;
  padding: 12px 10px;
  border-radius: 14px;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto;
  justify-items: center;
  align-content: center;
  text-align: center;
}

.quick-points svg {
  grid-row: auto;
  width: 36px;
  height: 36px;
}

.quick-points strong {
  grid-column: auto;
  font-size: 12px;
  line-height: 1.15;
}

.quick-points span {
  display: none;
}

  .hero-art {
    min-height: 250px;
    margin: 16px 12px 12px;
    border-radius: 22px;
  }

  .hero-art img {
    min-height: 270px;
  }

  .order-request {
    margin-top: 22px;
    gap: 16px;
  }

  .order-request-intro,
  .order-request-form,
  .account,
  .auth-card,
  .account-login,
  .account-dashboard,
  .about-hero,
  .privacy-page,
  .about-copy,
  .about-cards article,
  .map-points,
  .work-cases,
  .about-principles {
    border-radius: 20px;
  }

  .order-request-intro,
  .order-request-form,
  .account,
  .about-hero {
    padding: 22px 18px;
  }

  .order-request-intro h1,
  .account-heading h1,
  .account-heading h2 {
    font-size: 28px;
    line-height: 1.05;
  }

  .privacy-page {
    padding: 28px 20px;
  }

  .privacy-page > * {
    min-width: 0;
    max-width: 100%;
  }

  .privacy-page h1 {
    font-size: 30px;
    line-height: 1.08;
    overflow-wrap: break-word;
  }

  .privacy-page > p,
  .privacy-page article p,
  .privacy-page article h2 {
    overflow-wrap: anywhere;
  }

  .order-request-contact {
    width: 100%;
    justify-content: center;
  }

  .order-request-form input,
  .order-request-form textarea,
  .auth-card input,
  .account input,
  .account textarea,
  .account select {
    font-size: 16px;
  }

  .about-page .header {
    margin-bottom: 6px;
  }

  .about-floor-hero {
    margin-top: 0;
    padding-top: 12px;
    padding-bottom: 42px;
  }

  .about-floor-hero .about-hero {
    padding-top: 0;
  }

  .about-floor-hero .about-hero h1 {
    margin-top: 0;
  }

  .about-hero-actions,
  .mini-app-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .about-hero-actions .btn,
  .mini-app-actions .btn {
    min-width: 0;
    width: 100%;
    flex: none;
  }

  .video-review-grid {
    width: 100%;
    grid-template-columns: minmax(0, 1fr);
  }

  .video-review-card video {
    width: 100%;
  }

  .section-band-plans {
    justify-items: center;
    padding-right: 14px;
    padding-left: 14px;
  }

  .section-band-plans .subscriptions,
  .section-band-plans .section-heading,
  .section-band-plans .subscription-grid {
    width: 100%;
    max-width: 390px;
    margin-right: auto;
    margin-left: auto;
  }

  .section-band-plans .subscription-grid {
    justify-items: center;
  }

  .section-band-plans .subscription-card {
    width: 100%;
    max-width: 390px;
    justify-self: center;
  }

  .footer-bottom {
    gap: 10px;
  }
}

@media (max-width: 920px) {
  .site-shell {
    width: 100%;
    max-width: 100%;
  }

  .header {
    padding: 10px;
  }

  .header-actions {
    min-height: 86px;
    padding-top: 48px;
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .header-photo-logo {
    top: 10px;
    left: 10px;
    width: 72px;
    height: 34px;
    padding: 4px 6px;
  }

  .phone {
    top: 14px;
    gap: 5px;
  }

  .phone svg {
    width: 18px;
    height: 18px;
  }

  .phone strong {
    font-size: 12px;
  }

  .phone small {
    font-size: 9px;
  }

  .account-header-link {
    padding: 0 9px;
    font-size: 10px;
  }

  .nav {
    gap: 0 5px;
    font-size: 8.8px;
  }

  .page-floor-start,
  .section-band {
    padding-left: max(6px, env(safe-area-inset-left));
    padding-right: max(6px, env(safe-area-inset-right));
  }

  .page-floor-start .hero-copy,
  .hero-copy {
    padding-inline: 14px;
  }

  .hero h1 {
    font-size: 26px;
  }

  .privacy-page {
    padding: 24px 18px;
  }

  .privacy-page h1 {
    font-size: 23px;
    word-break: break-word;
  }

  .privacy-page article h2 {
    font-size: 18px;
    line-height: 1.16;
    word-break: break-word;
  }

  .privacy-page > p,
  .privacy-page article p {
    font-size: 14px;
    word-break: break-word;
  }

  .btn {
    font-size: 12px;
  }

  .order-options {
    width: 100%;
  }
}

@media (max-width: 920px) {
  .site-shell-home .header {
    gap: 12px;
    padding: 14px 12px 12px;
  }

  .site-shell-home .header-actions {
    display: grid;
    grid-template-columns: minmax(108px, 36vw) minmax(112px, 1fr);
    grid-template-areas:
      "logo account"
      "phone phone";
    gap: 10px;
    align-items: center;
    justify-items: stretch;
    padding-top: 0;
  }

  .site-shell-home .phone {
    position: static;
    display: inline-flex;
    grid-area: phone;
    align-items: center;
    justify-content: center;
    justify-self: center;
    width: auto;
    max-width: 100%;
    gap: 7px;
    margin: 0;
    padding: 2px 0 0;
    color: var(--theme-header-text);
    transform: none;
  }

  .site-shell-home .phone svg {
    width: 19px;
    height: 19px;
  }

  .site-shell-home .phone strong {
    color: var(--theme-header-text);
    font-size: 13px;
    line-height: 1.05;
  }

  .site-shell-home .phone small {
    display: block;
    color: var(--theme-header-muted);
    font-size: 10px;
    line-height: 1.1;
  }

  .site-shell-home .header-photo-logo {
    position: static;
    grid-area: logo;
    width: 100%;
    height: 54px;
    padding: 7px 9px;
    border-radius: 16px;
    object-fit: contain;
  }

  .site-shell-home .header-account {
    grid-area: account;
    justify-self: end;
    width: min(136px, 100%);
  }

  .site-shell-home .account-header-link {
    width: 100%;
    min-height: 44px;
    justify-content: center;
    padding: 0 10px;
    font-size: 12px;
  }

  .site-shell-home .nav {
    padding-top: 4px;
  }
}

@media (max-width: 920px) {
  .site-shell-home .header-actions {
    grid-template-columns: minmax(100px, 35vw) minmax(104px, 1fr);
    gap: 8px;
  }

  .site-shell-home .header-photo-logo {
    height: 50px;
    padding: 7px 8px;
  }

  .site-shell-home .header-account {
    width: min(124px, 100%);
  }

  .site-shell-home .account-header-link {
    min-height: 40px;
    font-size: 10px;
  }
}

@media (pointer: fine) {
  body,
  a,
  button,
  input,
  textarea,
  select,
  label,
  [role="button"],
  .btn,
  .account-header-link,
  .map-point-card,
  .service-card,
  .subscription-card,
  .review-card,
  .video-review-card,
  .benefit-grid article,
  .work-case-card {
    cursor: url("../assets/alternate-select.cur"), auto;
  }

  a,
  button,
  [role="button"],
  .btn,
  .account-header-link,
  .map-point-card {
    cursor: url("../assets/alternate-select.cur"), pointer;
  }
}

@media (max-width: 920px) {
  .site-shell-home .header {
    padding: 12px 12px 11px;
  }

  .site-shell-home .header-actions {
    grid-template-columns: minmax(118px, 36vw) minmax(118px, 1fr);
    column-gap: 12px;
    row-gap: 5px;
  }

  .site-shell-home .header-photo-logo {
    justify-self: start;
    width: min(142px, 100%);
    height: 48px;
    padding: 6px 8px;
  }

  .site-shell-home .header-account {
    justify-self: end;
    width: min(142px, 100%);
  }

  .site-shell-home .account-header-link {
    min-height: 42px;
    font-size: 11.5px;
  }

  .site-shell-home .phone {
    width: 100%;
    gap: 5px;
    padding-top: 0;
    margin-top: -2px;
  }

  .site-shell-home .phone strong {
    font-size: 12.2px;
  }

  .site-shell-home .phone small {
    font-size: 9.4px;
  }

  .site-shell-home .nav {
    padding-top: 2px;
  }

  .service-card-body {
    padding: 20px 22px 22px;
  }

  .service-checklist {
    gap: 10px;
  }

  .service-price-button {
    width: 100%;
    min-height: 42px;
    margin: 20px 0 0;
    padding-right: 14px;
    padding-left: 14px;
  }

  .service-price-button + .service-details {
    margin-top: 12px;
  }

  .service-details {
    padding-top: 0;
  }

  .service-details summary {
    width: 100%;
    min-height: 42px;
    margin: 0;
    padding: 0 12px;
  }

  .steps-grid {
    gap: 12px;
    margin-top: 16px;
  }

  .steps-grid article {
    min-height: 118px;
    gap: 6px;
    padding: 16px;
  }

  .steps-grid span {
    min-height: 28px;
    font-size: 12px;
  }

  .steps-grid strong {
    font-size: 17px;
  }

  .steps-grid p {
    font-size: 12.5px;
    line-height: 1.22;
  }

  .section-band-plans {
    justify-items: stretch;
    padding-right: 8px;
    padding-left: 8px;
  }

  .section-band-plans .subscriptions,
  .section-band-plans .section-heading,
  .section-band-plans .subscription-grid {
    width: 100%;
    max-width: none;
  }

  .section-band-plans .subscriptions {
    padding-top: 44px;
  }

  .section-band-plans .subscription-grid {
    gap: 18px;
    justify-items: stretch;
  }

  .section-band-plans .subscription-card {
    width: 100%;
    max-width: none;
    justify-self: stretch;
    padding: 22px 18px;
  }

  .subscription-card,
  .subscription-card h3,
  .subscription-card ul {
    min-height: 0;
  }

  .subscription-card h3 {
    font-size: 19px;
  }

  .subscription-card ul {
    gap: 10px;
  }

  .section-band .metrics,
  .metrics {
    width: min(100% - 18px, 372px);
    margin: 20px auto 0;
    padding: 0 8px;
    transform: none;
  }

  .metrics-heading {
    justify-items: center;
  }

  .metrics-heading h2 {
    font-size: 27px;
    text-align: center;
  }

  .metrics-grid {
    gap: 22px;
    margin-top: 22px;
  }

  .metrics-grid strong {
    font-size: 32px;
  }

  .page-floor-final .footer {
    margin-top: 4px;
    padding-right: 10px;
    padding-left: 10px;
  }

  .page-floor-final .footer-main {
    gap: 18px;
    padding: 28px 0 24px;
  }

  .page-floor-final .footer-card {
    padding: 18px;
  }

  .payment-icons {
    gap: 7px;
  }

  .payment-icons span {
    padding-right: 10px;
    padding-left: 10px;
  }
}

@media (max-width: 920px) {
  .site-shell-home .header-actions {
    grid-template-columns: minmax(112px, 38vw) minmax(118px, 1fr);
  }

  .site-shell-home .header-photo-logo {
    width: min(132px, 100%);
    height: 46px;
  }

  .site-shell-home .header-account {
    width: min(132px, 100%);
  }
}

@media (max-width: 920px) {
  .site-shell .header-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas:
      "logo phone"
      "account account";
    align-items: center;
    justify-items: stretch;
    min-width: 0;
    padding-top: 0;
    column-gap: 8px;
    row-gap: 8px;
  }

  .site-shell .header-photo-logo {
    position: static;
    grid-area: logo;
    width: 100%;
    height: 62px;
    padding: 8px 11px;
    object-fit: contain;
    object-position: center;
  }

  .site-shell .phone {
    position: static;
    top: auto;
    left: auto;
    grid-area: phone;
    justify-self: stretch;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    min-height: 62px;
    justify-content: center;
    gap: 6px;
    margin: 0;
    padding: 7px 9px;
    border: 1.5px solid rgba(255, 255, 255, 0.98);
    border-radius: 16px;
    background: #ffffff;
    color: #111827;
    box-shadow:
      0 14px 28px rgba(34, 105, 218, 0.16),
      inset 0 0 0 1px rgba(34, 105, 218, 0.08);
    transform: none;
  }

  .site-shell .phone svg {
    flex: 0 0 18px;
    width: 18px;
    height: 18px;
  }

  .site-shell .phone span {
    display: grid;
    min-width: 0;
    max-width: calc(100% - 23px);
    gap: 2px;
    text-align: left;
  }

  .site-shell .phone strong {
    color: #111827;
    overflow: hidden;
    font-size: 11.8px;
    line-height: 1.05;
    text-overflow: clip;
  }

  .site-shell .phone small {
    color: #687386;
    overflow: hidden;
    font-size: 8.4px;
    line-height: 1.05;
    text-overflow: clip;
  }

  .site-shell .header-account {
    grid-area: account;
    justify-self: stretch;
    width: 100%;
  }

  .site-shell .account-header-link {
    width: 100%;
    min-height: 42px;
  }

  .site-shell .nav {
    gap: 0 10px;
    padding-top: 5px;
    font-size: 12.6px;
    line-height: 1.1;
  }

  .site-shell .nav a,
  .site-shell .nav-account-toggle {
    display: inline-flex;
    min-height: 36px;
    align-items: center;
    padding: 6px 0;
  }

  .footer-card .social-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-card .social-link {
    width: 100%;
  }
}

@media (max-width: 920px) {
  .site-shell .header-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 6px;
  }

  .site-shell .header-photo-logo {
    width: 100%;
    height: 54px;
    padding: 7px 8px;
  }

  .site-shell .phone {
    min-height: 54px;
    padding-right: 6px;
    padding-left: 6px;
  }

  .site-shell .phone svg {
    width: 16px;
    height: 16px;
  }

  .site-shell .phone strong {
    font-size: 10.9px;
  }

  .site-shell .phone small {
    font-size: 8px;
  }

  .site-shell .nav {
    gap: 0 8px;
    font-size: 11.8px;
  }

  .site-shell .nav a,
  .site-shell .nav-account-toggle {
    min-height: 36px;
    padding: 5px 0;
  }
}

@media (max-width: 340px) {
  .hero h1,
  .hero h1 span {
    overflow-wrap: anywhere;
  }

  .site-shell .phone {
    gap: 3px;
    padding-right: 3px;
    padding-left: 4px;
  }

  .site-shell .phone svg {
    flex-basis: 14px;
    width: 14px;
    height: 14px;
  }

  .site-shell .phone span {
    max-width: calc(100% - 17px);
  }

  .site-shell .phone strong {
    font-size: 9.4px;
    line-height: 1;
  }

  .site-shell .phone small {
    font-size: 7.2px;
    line-height: 1;
  }

  .site-shell .nav {
    gap: 0 6px;
    font-size: 10.9px;
  }

  .site-shell .nav a,
  .site-shell .nav-account-toggle {
    min-height: 34px;
  }
}

@media (max-width: 560px) {
  .site-shell.site-shell-home .phone small {
    font-size: 11px;
    line-height: 1.15;
  }
}

@media (max-width: 360px) {
  .site-shell.site-shell-home .phone small {
    font-size: 10px;
  }
}

@media (max-width: 340px) {
  .site-shell.site-shell-home .phone small {
    font-size: 9px;
  }
}


@media (max-width: 560px) {
  .site-shell .header-actions {
    grid-template-areas:
      "logo phone"
      "hours hours"
      "account account";
  }

  .site-shell .phone {
    min-height: 54px;
  }

  .site-shell .phone span {
    max-width: calc(100% - 23px);
    gap: 0;
  }

  .site-shell .phone small {
    display: none;
  }

  .site-shell .header-hours {
    display: flex;
    grid-area: hours;
    min-height: 30px;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    border: 1px solid rgba(139, 184, 255, 0.28);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--theme-header-muted);
    font-size: 12px;
    font-weight: 900;
    line-height: 1;
    white-space: nowrap;
  }
}

@media (max-width: 360px) {
  .site-shell .header-hours {
    font-size: 11px;
  }
}

.phone-action-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: flex-end;
  justify-content: center;
  padding: 18px;
}

.phone-action-modal.is-open {
  display: flex;
}

.phone-action-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 13, 24, 0.46);
}

.phone-action-panel {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(100%, 360px);
  gap: 10px;
  padding: 18px;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

.phone-action-panel strong {
  color: #111827;
  font-size: 18px;
  font-weight: 900;
  text-align: center;
}

.phone-action-call,
.phone-action-copy,
.phone-action-cancel {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 14px;
  font: inherit;
  font-size: 15px;
  font-weight: 900;
}

.phone-action-call {
  background: #2269da;
  color: #ffffff;
}

.phone-action-copy {
  background: #eef5ff;
  color: #2269da;
}

.phone-action-cancel {
  background: #f3f4f6;
  color: #536173;
}

.phone-choice {
  display: grid;
  gap: 8px;
}

.phone-choice-number {
  font-weight: 900;
}

.phone-choice-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.phone-choice-actions a,
.phone-choice-actions button {
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(139, 184, 255, 0.34);
  border-radius: 999px;
  background: rgba(34, 105, 218, 0.12);
  color: inherit;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
}

.quick-points {
  display: flex !important;
  flex-direction: column !important;
  flex-wrap: nowrap !important;
  align-items: stretch !important;
  justify-content: center !important;
  justify-self: stretch !important;
  width: 100% !important;
  max-width: 430px !important;
  gap: 10px !important;
  margin: 20px 0 0 !important;
}

.quick-points article {
  display: inline-flex !important;
  flex: 0 0 auto !important;
  align-items: center !important;
  justify-content: flex-start !important;
  width: 100% !important;
  min-width: 0 !important;
  max-width: 100% !important;
  min-height: 0 !important;
  height: auto !important;
  gap: 12px !important;
  padding: 12px 18px !important;
  border-radius: 18px !important;
  text-align: left !important;
}

.quick-points svg {
  flex: 0 0 32px !important;
  grid-row: auto !important;
  width: 32px !important;
  height: 32px !important;
  padding: 7px !important;
}

.quick-points strong {
  display: block !important;
  grid-column: auto !important;
  max-width: none !important;
  margin: 0 !important;
  font-size: 12px !important;
  line-height: 1.15 !important;
  text-align: left !important;
}

.quick-points span {
  display: none !important;
}
@media (max-width: 560px) {
  .section-band .metrics,
  .metrics {
    width: 100% !important;
    max-width: none !important;
    margin: 20px 0 0 !important;
    padding: 0 16px !important;
    transform: none !important;
  }

  .metrics-heading {
    justify-items: start !important;
  }

  .metrics-heading h2 {
    text-align: left !important;
  }

  .metrics-grid {
    width: 100% !important;
    justify-items: start !important;
  }

  .metrics-grid article {
    width: 100% !important;
    text-align: left !important;
  }
}

@media (max-width: 560px) {
  .site-shell .header-hours {
    color: #ffffff !important;
    font-size: 13px !important;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.25);
  }

  .site-shell .nav {
    width: 100% !important;
    justify-content: space-between !important;
    gap: 0 10px !important;
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 14px !important;
    font-weight: 950 !important;
    line-height: 1.1 !important;
  }

  .site-shell .nav a,
  .site-shell .nav-account-toggle {
    display: inline-flex !important;
    min-height: 40px !important;
    align-items: center !important;
    padding: 6px 0 !important;
  }
}

@media (max-width: 340px) {
  .site-shell .nav {
    gap: 0 5px !important;
    font-size: 12.4px !important;
  }
}

@media (max-width: 560px) {
  html[data-time-period="day"] .site-shell .header,
  body[data-time-period="day"] .site-shell .header {
    border-color: rgba(139, 184, 255, 0.28) !important;
    background:
      radial-gradient(circle at 12% 0%, rgba(34, 105, 218, 0.26), transparent 34%),
      linear-gradient(180deg, rgba(19, 35, 61, 0.96), rgba(9, 18, 34, 0.96)) !important;
    box-shadow: 0 18px 44px rgba(9, 18, 34, 0.18) !important;
  }

  html[data-time-period="day"] .site-shell .header-hours,
  body[data-time-period="day"] .site-shell .header-hours {
    border-color: rgba(255, 255, 255, 0.2) !important;
    background: rgba(255, 255, 255, 0.08) !important;
    color: #ffffff !important;
  }

  html[data-time-period="day"] .site-shell .nav,
  body[data-time-period="day"] .site-shell .nav {
    color: rgba(255, 255, 255, 0.92) !important;
  }
}

@media (max-width: 560px) {
  :is(html, body)[data-time-period="morning"] .site-shell .header,
  :is(html, body)[data-time-period="day"] .site-shell .header {
    border-color: rgba(139, 184, 255, 0.28) !important;
    background:
      radial-gradient(circle at 12% 0%, rgba(34, 105, 218, 0.26), transparent 34%),
      linear-gradient(180deg, rgba(19, 35, 61, 0.96), rgba(9, 18, 34, 0.96)) !important;
    box-shadow: 0 18px 44px rgba(9, 18, 34, 0.18) !important;
  }

  :is(html, body)[data-time-period="morning"] .site-shell .header-hours,
  :is(html, body)[data-time-period="day"] .site-shell .header-hours {
    border-color: rgba(255, 255, 255, 0.2) !important;
    background: rgba(255, 255, 255, 0.08) !important;
    color: #ffffff !important;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.25);
  }

  :is(html, body)[data-time-period="morning"] .site-shell .nav a,
  :is(html, body)[data-time-period="morning"] .site-shell .nav-account-toggle,
  :is(html, body)[data-time-period="day"] .site-shell .nav a,
  :is(html, body)[data-time-period="day"] .site-shell .nav-account-toggle {
    color: rgba(255, 255, 255, 0.9) !important;
  }

  :is(html, body)[data-time-period="morning"] .site-shell .nav a[aria-current="page"],
  :is(html, body)[data-time-period="morning"] .site-shell .nav-account-toggle[aria-current="page"],
  :is(html, body)[data-time-period="day"] .site-shell .nav a[aria-current="page"],
  :is(html, body)[data-time-period="day"] .site-shell .nav-account-toggle[aria-current="page"] {
    color: #8bb8ff !important;
  }
}

@media (max-width: 560px) {
  .hero-copy .hero-buttons {
    justify-self: stretch !important;
    justify-items: stretch !important;
    width: 100% !important;
    max-width: none !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    transform: none !important;
  }

  .hero-copy .hero-order-action,
  .hero-copy .hero-buttons .btn {
    width: 100% !important;
    max-width: none !important;
  }
}

html[data-time-period="day"],
body[data-time-period="day"] {
  --time-page: linear-gradient(180deg, #f7fbff 0%, #eef5ff 48%, #eaf2fb 100%) !important;
  --theme-surface-soft: rgba(247, 251, 255, 0.96) !important;
}

body[data-time-period="day"] {
  --theme-header-bg: rgba(255, 255, 255, 0.84) !important;
}