:root {
  --bg: #FAFAF7;
  --ink: #0E1512;
  --ink-soft: rgba(14, 21, 18, .62);
  --accent: #16B862;
  --accent-dark: #0E8F49;
  --line: rgba(14, 21, 18, .14);
  --dark: #0A0F0C;
  --dark-soft: #141B17;
  --dark-line: rgba(255, 255, 255, .14);
  --radius-card: 24px;
  --radius-pill: 999px;
  --container: 1460px;
  --ease: cubic-bezier(.16, 1, .3, 1);
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("../fonts/manrope/manrope-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("../fonts/manrope/manrope-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("../fonts/manrope/manrope-cyrillic.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("../fonts/manrope/manrope-cyrillic-ext.woff2") format("woff2");
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
@font-face {
  font-family: "Golos Text";
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url("../fonts/golos-text/golos-text-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Golos Text";
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url("../fonts/golos-text/golos-text-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Golos Text";
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url("../fonts/golos-text/golos-text-cyrillic.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: "Golos Text";
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url("../fonts/golos-text/golos-text-cyrillic-ext.woff2") format("woff2");
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: rgba(22, 184, 98, 0.45) transparent;
}

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background-color: rgba(22, 184, 98, 0.45);
  border-radius: 999px;
  transition: background-color 0.3s var(--ease);
}
::-webkit-scrollbar-thumb:hover {
  background-color: var(--accent);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
body {
  font-family: "Manrope", system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

button {
  font: inherit;
  cursor: pointer;
}

.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

@media (min-width: 1024px) {
  .container {
    padding-inline: 40px;
  }
}
h1, h2, h3 {
  font-family: "Golos Text", sans-serif;
  letter-spacing: -0.01em;
}

.section-title {
  font-size: clamp(2rem, 3.6vw, 2.9rem);
  font-weight: 700;
  line-height: 1.1;
}

[id] {
  scroll-margin-top: 96px;
}

.reveal {
  opacity: 0;
  transform: translateY(36px);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 15px;
  white-space: nowrap;
  transition: transform 0.35s var(--ease), background 0.35s var(--ease), color 0.35s var(--ease);
  border: 1.5px solid transparent;
}
.btn:active {
  transform: scale(0.96);
}
.btn:disabled {
  cursor: not-allowed;
  pointer-events: none;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover {
  background: var(--accent-dark);
}
.btn-primary:disabled {
  background: rgba(14, 21, 18, 0.12);
  color: rgba(14, 21, 18, 0.4);
}

.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}
.btn-outline-light:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.btn-outline-ink {
  border-color: var(--line);
  color: var(--ink);
}
.btn-outline-ink:hover {
  border-color: var(--ink);
  background: rgba(14, 21, 18, 0.04);
}

.btn-sm {
  padding: 10px 18px;
  font-size: 13.5px;
}

.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease);
}
.nav--scrolled {
  background: rgba(10, 15, 12, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--dark-line);
}

.scroll-progress {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 55;
  height: 3px;
  pointer-events: none;
}

.scroll-progress-bar {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left center;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.logo {
  font-family: "Golos Text";
  font-weight: 800;
  font-size: 25px;
  letter-spacing: 0.02em;
  display: flex;
  align-items: baseline;
  color: #fff;
}
.logo .logo-e {
  color: var(--accent);
  font-weight: 800;
}

.nav-links {
  display: none;
  gap: 30px;
  font-size: 14.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
}
.nav-links a {
  position: relative;
  padding: 4px 0;
  transition: color 0.3s var(--ease);
}
.nav-links a:hover, .nav-links a.active {
  color: #fff;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav-links a.active::after {
  transform: scaleX(1);
}
@media (min-width: 1024px) {
  .nav-links {
    display: flex;
  }
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-phone {
  display: none;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}
@media (min-width: 1280px) {
  .nav-phone {
    display: inline;
  }
}

.nav-cta {
  display: none;
}
@media (min-width: 1024px) {
  .nav-cta {
    display: inline-flex;
    padding: 12px 24px;
    font-size: 14px;
  }
}

.nav-burger {
  display: inline-flex;
  background: none;
  border: none;
  font-size: 26px;
  color: #fff;
}
@media (min-width: 1024px) {
  .nav-burger {
    display: none;
  }
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 60;
  display: flex;
  flex-direction: column;
  padding: 100px 24px 40px;
  transform: translateY(-200%);
  transition: transform 0.5s var(--ease);
}
.mobile-menu.open {
  transform: translateY(0);
}
.mobile-menu a {
  font-family: "Golos Text";
  font-size: 26px;
  font-weight: 600;
  padding: 14px 0;
  border-bottom: 1px solid var(--dark-line);
  color: #fff;
}
.mobile-menu a.active {
  color: var(--accent);
}
.mobile-menu .btn {
  margin-top: 28px;
  width: 100%;
}

.mobile-close {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 28px;
  background: none;
  border: none;
  color: #fff;
}

.mobile-phone {
  margin-top: auto;
  font-weight: 600;
  padding-top: 20px;
  color: #fff;
}

.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  color: #fff;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 38% 55%;
  transform: scale(1.06);
}
@media (min-width: 900px) {
  .hero-media img {
    object-position: 32% 50%;
  }
}

.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(700px 500px at 42% 58%, rgba(22, 184, 98, 0.2), transparent 60%), linear-gradient(100deg, rgba(6, 10, 8, 0.92) 8%, rgba(6, 10, 8, 0.62) 34%, rgba(6, 10, 8, 0.18) 62%, rgba(6, 10, 8, 0.35) 100%), linear-gradient(0deg, rgba(6, 10, 8, 0.85) 0%, rgba(6, 10, 8, 0.15) 46%, rgba(6, 10, 8, 0.05) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-block: 96px 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-title {
  font-size: clamp(2.9rem, 9.4vw, 9.25rem);
  font-weight: 700;
  line-height: 0.94;
  text-align: left;
}
.hero-title .line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.05em;
}
.hero-title .line span {
  display: inline-block;
  will-change: transform;
}
.hero-title .accent-word {
  color: var(--accent);
}

.hero-sub {
  margin-top: 26px;
  max-width: 62ch;
  width: 100%;
  font-size: clamp(17px, 1.7vw, 20px);
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.65;
  text-align: left;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 34px;
}

.hero-dock {
  position: relative;
  z-index: 1;
  width: 100%;
  margin-top: 64px;
}

.dock-inner {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(6px) saturate(110%) contrast(1.02);
  -webkit-backdrop-filter: blur(22px) saturate(110%) contrast(1.02);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14), inset 0 -1px 0 rgba(255, 255, 255, 0.03), 0 24px 60px rgba(0, 0, 0, 0.5);
  border-radius: 20px 20px 0 0;
  padding: 32px 36px;
}
.dock-inner::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.12);
  pointer-events: none;
}
@media (min-width: 1024px) {
  .dock-inner {
    border-radius: 20px;
    margin-bottom: 28px;
  }
}
@media (prefers-reduced-transparency: reduce) {
  .dock-inner {
    background: rgba(10, 15, 12, 0.92);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}

.dock-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (min-width: 680px) {
  .dock-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
  }
}

.dock-stat-num {
  display: block;
  font-family: "Golos Text";
  font-size: clamp(1.6rem, 2.8vw, 2.5rem);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: #fff;
}

.dock-stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.62);
  margin-top: 4px;
}

.catalog {
  background: var(--dark);
  color: #fff;
  padding-block: 96px;
}

.catalog-head {
  max-width: 620px;
}
.catalog-head p {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.6);
  max-width: 50ch;
  font-size: 16px;
  line-height: 1.6;
}

.cat-stack {
  margin-top: 52px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cat-row-half {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 768px) {
  .cat-row-half {
    grid-template-columns: 1fr 1fr;
  }
}

.cat-panel {
  display: block;
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--dark-soft);
  opacity: 0;
  transform: translateY(36px);
}
.cat-panel.full {
  min-height: 420px;
}
.cat-panel.half {
  min-height: 340px;
}
.cat-panel:hover .panel-arrow {
  transform: rotate(45deg);
  background: #fff;
}
.cat-panel:hover .panel-media img {
  transform: scale(1.04);
}

.panel-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.panel-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.8) brightness(0.6);
  transition: transform 1.1s var(--ease);
}
.full .panel-media img {
  object-position: 70% 55%;
}
.panel-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 15, 12, 0.94) 20%, rgba(10, 15, 12, 0.4) 58%, rgba(10, 15, 12, 0.15) 100%);
}
.cat-panel.half .panel-media::after {
  background: linear-gradient(180deg, rgba(10, 15, 12, 0.1) 15%, rgba(10, 15, 12, 0.94) 88%);
}

.panel-body {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
}
.full .panel-body {
  padding: 40px 44px;
  max-width: 520px;
}
.panel-body h3 {
  font-size: 24px;
  font-weight: 700;
}
.full .panel-body h3 {
  font-size: 30px;
}
.panel-body p {
  margin-top: 10px;
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
  max-width: 40ch;
}

.panel-arrow {
  margin-top: 18px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: transform 0.4s var(--ease), background 0.4s var(--ease);
  align-self: flex-start;
}

.products {
  background: var(--bg);
  padding-block: 100px;
}
@media (max-width: 640px) {
  .products {
    padding-block: 70px;
  }
}

.products-head {
  max-width: 620px;
}
.products-head p {
  margin-top: 16px;
  color: var(--ink-soft);
  max-width: 50ch;
  font-size: 16px;
  line-height: 1.6;
}

.products-group {
  margin-top: 64px;
}
.products-group:first-of-type {
  margin-top: 52px;
}

.products-subhead {
  font-family: "Golos Text";
  font-size: clamp(1.4rem, 2.2vw, 2.1rem);
  font-weight: 700;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 28px;
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}
@media (min-width: 700px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1100px) {
  .product-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
}

.product-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.4s var(--ease), border-color 0.4s var(--ease), transform 0.4s var(--ease);
}
.product-card:hover {
  box-shadow: 0 26px 50px -26px rgba(14, 21, 18, 0.22);
  border-color: rgba(22, 184, 98, 0.45);
  transform: translateY(-3px);
}
.product-card:hover .product-gallery img.active {
  transform: scale(1.04);
}
.product-card:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.product-gallery {
  position: relative;
  aspect-ratio: 1/1.3;
  overflow: hidden;
  background: #EEF1EE;
}
.product-gallery img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s var(--ease), transform 1.1s var(--ease);
}
.product-gallery img.active {
  opacity: 1;
}
.product-gallery:hover .gallery-nav {
  opacity: 1;
}

.gallery-badges {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  max-width: calc(100% - 24px);
}

.badge {
  font-size: 11.5px;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  border: 1px solid var(--line);
}
.badge.badge-new {
  background: var(--accent);
  color: #fff;
  border-color: transparent;
}

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(14, 21, 18, 0.55);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  opacity: 0;
  transition: opacity 0.3s var(--ease), background 0.3s var(--ease);
  z-index: 3;
  border: none;
}
.gallery-nav.prev {
  left: 10px;
}
.gallery-nav.next {
  right: 10px;
}
.gallery-nav:hover {
  background: var(--accent);
  color: #fff;
}
@media (hover: none) {
  .gallery-nav {
    opacity: 1;
    background: rgba(14, 21, 18, 0.4);
  }
}

.gallery-dots {
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  z-index: 3;
  display: flex;
  justify-content: center;
  gap: 6px;
}

.gallery-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  border: none;
  padding: 0;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}
.gallery-dot.active {
  background: #fff;
  transform: scale(1.35);
}

.product-body {
  padding: 20px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.product-title {
  font-family: "Golos Text";
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
}

.product-price-row {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.product-price {
  font-size: 13.5px;
  color: var(--ink-soft);
}

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(8, 12, 10, 0.7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
}
.modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-panel {
  background: #fff;
  border-radius: var(--radius-card);
  width: 100%;
  max-width: 880px;
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  position: relative;
}

.modal-scroll, .modal-content {
  overflow-y: auto;
  min-height: 0;
  scrollbar-width: thin;
  scrollbar-color: rgba(22, 184, 98, 0.45) transparent;
}
.modal-scroll::-webkit-scrollbar, .modal-content::-webkit-scrollbar {
  width: 12px;
}
.modal-scroll::-webkit-scrollbar-track, .modal-content::-webkit-scrollbar-track {
  background: transparent;
}
.modal-scroll::-webkit-scrollbar-thumb, .modal-content::-webkit-scrollbar-thumb {
  background-color: rgba(22, 184, 98, 0.45);
  border-radius: 999px;
  border: 3px solid #fff;
  background-clip: padding-box;
}
.modal-scroll::-webkit-scrollbar-thumb:hover, .modal-content::-webkit-scrollbar-thumb:hover {
  background-color: var(--accent);
}

.modal-body {
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 5;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--ink);
  transition: background 0.3s var(--ease);
}
.modal-close:hover {
  background: var(--accent);
}

.modal-content {
  padding: 32px 36px 40px;
}
@media (max-width: 640px) {
  .modal-content {
    padding: 24px;
  }
}

.modal-title {
  font-family: "Golos Text";
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  font-weight: 700;
  padding-right: 44px;
}

.modal-desc {
  margin-top: 14px;
  color: var(--ink-soft);
  font-size: 15.5px;
  line-height: 1.65;
  max-width: 68ch;
}

.specs-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
@media (min-width: 560px) {
  .specs-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.spec-chip {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 16px;
}

.spec-label {
  display: block;
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
}

.spec-value {
  display: block;
  margin-top: 4px;
  font-family: "Golos Text";
  font-size: 15px;
  font-weight: 600;
}

.docs-list {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.doc-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.doc-link:hover {
  border-color: var(--accent);
  background: rgba(22, 184, 98, 0.07);
}
.doc-link i {
  color: #D64541;
  font-size: 19px;
}

.modal-cta {
  margin-top: 32px;
}

.modal-loading {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 80px 36px;
  color: var(--ink-soft);
  font-size: 15px;
}

.spinner {
  width: 20px;
  height: 20px;
  flex: none;
  border-radius: 50%;
  border: 2px solid var(--line);
  border-top-color: var(--accent);
  animation: spin 0.8s linear infinite;
}
@media (prefers-reduced-motion: reduce) {
  .spinner {
    animation-duration: 2s;
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.modal-error {
  padding: 80px 36px;
  color: var(--ink-soft);
  font-size: 15px;
  text-align: center;
}

.lead-modal-panel {
  max-width: 460px;
}

.lead-form-card {
  border: none;
  box-shadow: none;
}

.lead-form-title {
  font-family: "Golos Text";
  font-size: clamp(1.3rem, 2.2vw, 1.6rem);
  font-weight: 700;
  padding-right: 34px;
}

.lead-form-sub {
  margin-top: 8px;
  margin-bottom: 4px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.5;
}
.lead-form-sub:empty {
  display: none;
}

.network {
  background: var(--bg);
  padding-block: 100px;
}
@media (max-width: 640px) {
  .network {
    padding-block: 70px;
  }
}

.network-head {
  max-width: 640px;
}
.network-head p {
  margin-top: 16px;
  color: var(--ink-soft);
  max-width: 52ch;
  font-size: 16px;
  line-height: 1.6;
}

.app-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--ink);
  color: #fff;
  padding: 12px 20px;
  border-radius: 14px;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease);
}
.store-badge:hover {
  background: #000;
  transform: translateY(-2px);
}
.store-badge:active {
  transform: translateY(0) scale(0.98);
}

.store-badge-icon {
  width: 26px;
  height: 26px;
  flex: none;
}

.store-badge-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.store-badge-text small {
  font-size: 10.5px;
  color: rgba(255, 255, 255, 0.68);
  font-weight: 500;
}
.store-badge-text strong {
  font-size: 15.5px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.network-map-wrap {
  margin-top: 44px;
}

.network-map {
  position: relative;
  width: 100%;
  height: 560px;
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg);
}
@media (max-width: 640px) {
  .network-map {
    height: 420px;
  }
}

.map-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  padding: 32px;
  color: var(--ink-soft);
  font-size: 14px;
  background: repeating-linear-gradient(45deg, rgba(14, 21, 18, 0.03) 0 2px, transparent 2px 14px);
}
.map-placeholder i {
  font-size: 30px;
  color: var(--accent);
}
.map-placeholder a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.map-marker {
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 8px 18px -4px rgba(14, 21, 18, 0.45), 0 0 0 4px rgba(255, 255, 255, 0.92);
  transition: transform 0.25s var(--ease), background 0.25s var(--ease);
}
.map-marker:hover, .map-marker:focus-visible {
  transform: scale(1.15);
  background: var(--accent-dark);
}
.map-marker:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.map-popup {
  position: relative;
  background: #fff;
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: 0 20px 40px -16px rgba(14, 21, 18, 0.35);
  font-size: 13px;
  white-space: nowrap;
  transform: translate(-50%, calc(-100% - 14px));
  pointer-events: none;
}
.map-popup strong {
  display: block;
  font-family: "Golos Text";
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
}
.map-popup span {
  display: block;
  margin-top: 2px;
  color: var(--ink-soft);
}
.map-popup::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  border: 7px solid transparent;
  border-top-color: #fff;
}

.network-cities {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
  color: var(--ink-soft);
}
.network-cities span {
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
}

.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 36px;
  box-shadow: 0 30px 60px -30px rgba(14, 21, 18, 0.18);
}
@media (max-width: 640px) {
  .form-card {
    padding: 28px 22px;
  }
}
.form-card > form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
}
.form-card .form-success {
  display: none;
}
.form-card.is-sent > form {
  display: none;
}
.form-card.is-sent .form-success {
  display: flex;
}

.form-card-title {
  font-family: "Golos Text";
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 22px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-row label {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}
.form-row input, .form-row select, .form-row textarea {
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  font: inherit;
  font-size: 15px;
  color: var(--ink);
  background: var(--bg);
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(22, 184, 98, 0.15);
}
.form-row input::placeholder, .form-row select::placeholder, .form-row textarea::placeholder {
  color: var(--ink-soft);
  opacity: 0.7;
}
.form-row textarea {
  min-height: 120px;
  resize: vertical;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.5;
}
.form-check input {
  margin-top: 3px;
  accent-color: var(--accent);
  width: 16px;
  height: 16px;
  flex: none;
}
.form-check a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-submit {
  margin-top: 4px;
  width: 100%;
}

.form-success {
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: 20px 0;
}
.form-success i {
  font-size: 44px;
  color: var(--accent);
}
.form-success h3 {
  font-family: "Golos Text";
  font-size: 20px;
  font-weight: 700;
}
.form-success p {
  color: var(--ink-soft);
  font-size: 14.5px;
  max-width: 34ch;
}

.franchise {
  background: var(--bg);
  padding-block: 100px;
}
@media (max-width: 640px) {
  .franchise {
    padding-block: 70px;
  }
}

.franchise-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 960px) {
  .franchise-grid {
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start;
  }
}

.franchise-info > p {
  margin-top: 16px;
  font-size: 17px;
  color: var(--ink-soft);
  max-width: 48ch;
  line-height: 1.6;
}

.brand-mark {
  color: var(--accent);
  font-weight: 700;
}

.franchise-perks {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
}
.franchise-perks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--ink);
}
.franchise-perks i {
  color: var(--accent);
  font-size: 18px;
  flex: none;
}

.franchise-stats {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 28px 40px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.franchise-stats .franchise-stat-value {
  display: block;
  font-family: "Golos Text";
  font-weight: 700;
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  white-space: nowrap;
}

.franchise-stats .stat-label {
  margin-top: 4px;
  font-size: 12px;
  color: var(--ink-soft);
}

.faq {
  background: var(--bg);
  padding-block: 100px;
}
@media (max-width: 640px) {
  .faq {
    padding-block: 70px;
  }
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 960px) {
  .faq-grid {
    grid-template-columns: 0.8fr 1.2fr;
    gap: 56px;
  }
}

.faq-head > p {
  margin-top: 16px;
  font-size: 16px;
  color: var(--ink-soft);
  max-width: 46ch;
  line-height: 1.6;
}
.faq-head .btn {
  margin-top: 28px;
}

.faq-list {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item:first-child {
  border-top: 1px solid var(--line);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 2px;
  background: none;
  border: none;
  text-align: left;
  font-family: "Golos Text";
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
}
.faq-question .faq-question-text {
  flex: 1;
}

.faq-icon {
  flex: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: var(--ink);
  transition: transform 0.4s var(--ease), background 0.4s var(--ease), border-color 0.4s var(--ease), color 0.4s var(--ease);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s var(--ease);
}
.faq-answer > div {
  overflow: hidden;
}

.faq-answer-inner {
  padding: 0 2px 24px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.65;
  max-width: 62ch;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--accent);
  border-color: var(--accent);
  color: var(--ink);
}
.faq-item.open .faq-answer {
  grid-template-rows: 1fr;
}

.contacts {
  background: var(--dark);
  color: #fff;
  padding-block: 96px;
}

.contacts-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 960px) {
  .contacts-grid {
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start;
  }
}

.contacts-info > p {
  margin-top: 16px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.65);
  max-width: 48ch;
  line-height: 1.6;
}

.contact-details {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.contact-detail i {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--dark-line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 18px;
  flex: none;
}

.contact-detail-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 6px;
}

.contact-detail-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

.contact-detail-value {
  font-size: 15.5px;
  font-weight: 600;
  color: #fff;
}
.contact-detail-value a {
  color: inherit;
}

.contact-social {
  margin-top: 32px;
  display: flex;
  gap: 12px;
}

.social-link {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--dark-line);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease), border-color 0.3s var(--ease);
}
.social-link:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-2px);
}
.social-link img {
  width: 19px;
  height: 19px;
}

.site-footer {
  background: var(--dark);
  color: #fff;
  border-top: 1px solid var(--dark-line);
  padding-block: 64px 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 700px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}
@media (min-width: 1100px) {
  .footer-top {
    grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
  }
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-brand p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  max-width: 32ch;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}

.footer-col {
  display: flex;
  flex-direction: column;
}
.footer-col h3 {
  font-family: "Golos Text";
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.48);
  margin-bottom: 16px;
}
.footer-col a, .footer-col span {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.8);
  padding: 6px 0;
  transition: color 0.3s var(--ease);
}
.footer-col a:hover {
  color: var(--accent);
}
.footer-col span {
  color: rgba(255, 255, 255, 0.55);
}

.footer-bottom {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid var(--dark-line);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-copy {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
}

.footer-legal {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-legal a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.3s var(--ease);
}
.footer-legal a:hover {
  color: #fff;
}

.footer-to-top {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--dark-line);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}
.footer-to-top:hover {
  background: var(--accent);
  transform: translateY(-2px);
}

.policy-body h1 {
  font-family: "Golos Text";
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  line-height: 1.15;
}
.policy-body .policy-updated {
  margin-top: 12px;
  color: var(--ink-soft);
  font-size: 13.5px;
  line-height: 1.6;
}
.policy-body section {
  margin-top: 36px;
}
.policy-body h2 {
  font-family: "Golos Text";
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  font-weight: 700;
  margin-bottom: 12px;
}
.policy-body p {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.7;
}
.policy-body p + p {
  margin-top: 12px;
}
.policy-body ul {
  margin-top: 10px;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: disc;
}
.policy-body ul li {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.65;
}
.policy-body strong {
  color: var(--ink);
  font-weight: 700;
}
.policy-body a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.policy-body code {
  font-family: monospace;
  background: var(--line);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.9em;
}
.policy-body .policy-note {
  margin-top: 16px;
  padding: 14px 16px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 14px;
  font-size: 13.5px;
}
.policy-body .policy-contacts {
  list-style: none;
  padding-left: 0;
}

.policy-page {
  background: var(--bg);
}

.policy-header {
  background: var(--dark);
  border-bottom: 1px solid var(--dark-line);
}

.policy-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.policy-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s var(--ease);
}
.policy-back:hover {
  color: #fff;
}

.policy-page-content {
  padding-block: 64px 100px;
}
.policy-page-content .container {
  max-width: 760px;
}

.policy-modal-panel {
  max-width: 720px;
}

.policy-modal-body {
  padding: 64px 40px 44px;
}
@media (max-width: 640px) {
  .policy-modal-body {
    padding: 60px 22px 32px;
  }
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 90;
  max-width: 630px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  box-shadow: 0 30px 60px -30px rgba(14, 21, 18, 0.3);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transform: translateY(calc(100% + 20px));
  opacity: 0;
  transition: transform 0.5s var(--ease), opacity 0.5s var(--ease);
  pointer-events: none;
}
.cookie-banner.visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.cookie-banner-text {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--ink);
}

.cookie-banner-btn {
  align-self: flex-start;
  padding: 12px 28px;
  font-size: 14px;
}
