/* Inter — self-hosted, cyrillic + latin, weight 400 */

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/inter-400-cyrillic.woff2') format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/inter-400-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;
}

/* ========================================
   CSS VARIABLES
======================================== */
:root {
  --bg:         oklch(0.08 0.005 250);
  --fg:         oklch(0.95 0 0);
  --card:       oklch(0.12 0.005 250);
  --primary:    oklch(0.75 0.15 85);
  --primary-fg: oklch(0.10 0 0);
  --secondary:  oklch(0.18 0.005 250);
  --secondary-fg: oklch(0.85 0 0);
  --muted:      oklch(0.15 0.005 250);
  --muted-fg:   oklch(0.72 0 0);
  --accent:     oklch(0.80 0.18 85);
  --border:     oklch(0.22 0.005 250);
  --input:      oklch(0.15 0.005 250);
  --radius:     0.375rem;
  --max-w:      80rem;
  --pad-x:      1.5rem;
}

/* ========================================
   RESET & BASE
======================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background-color: var(--bg);
  color: var(--fg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; background: none; border: none; }
img { display: block; max-width: 100%; }
input, select, textarea { font-family: inherit; }
ul, ol { list-style: none; }

/* ========================================
   SHARED LAYOUT
======================================== */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

@media (min-width: 1024px) {
  .container { padding: 0 2rem; }
}

/* ========================================
   SHARED VISUALS
======================================== */
.glass {
    background: oklch(0.22 0.05 103.78 / 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid oklch(0.25 0.005 250 / 0.5);
}

.text-gradient {
  background: linear-gradient(135deg, var(--fg) 0%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.glow-accent {
    box-shadow: 0 0 40px -10px oklch(0.75 0.15 85 / 0.14);
}

.noise-overlay { position: relative; }
.noise-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  opacity: 0.03;
  pointer-events: none;
  z-index: 1;
}

.line-accent {
  background: linear-gradient(90deg, transparent 0%, oklch(0.75 0.15 85 / 0.5) 50%, transparent 100%);
  height: 1px;
}

/* ========================================
   BADGE (shared across all sections)
======================================== */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 1rem;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 500;
  border: 1px solid;
}

.badge--primary {
  background: oklch(0.75 0.15 85 / 0.1);
  border-color: oklch(0.75 0.15 85 / 0.3);
  color: var(--primary);
}

.badge--muted {
  background: var(--secondary);
  border-color: var(--border);
  color: var(--muted-fg);
}

/* ========================================
   BUTTONS (shared)
======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  border-radius: calc(var(--radius) + 2px);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
  transition: all 0.2s;
  border: 1px solid transparent;
  white-space: nowrap;
  text-decoration: none;
}

.btn--primary {
  background: var(--primary);
  color: var(--primary-fg);
  border-color: var(--primary);
}
.btn--primary:hover { background: oklch(0.70 0.15 85); }

.btn--outline {
  background: transparent;
  border-color: var(--border);
  color: var(--fg);
}
.btn--outline:hover { background: var(--secondary); }

.btn--outline-primary {
  background: transparent;
  border-color: oklch(0.75 0.15 85 / 0.5);
  color: var(--primary);
}
.btn--outline-primary:hover { background: oklch(0.75 0.15 85 / 0.1); }

.btn--ghost {
  background: transparent;
  border-color: oklch(1 0 0 / 0.12);
  color: var(--muted-fg);
}
.btn--ghost:hover { background: var(--secondary); color: var(--fg); border-color: oklch(1 0 0 / 0.2); }

.btn--lg {
  padding: 0.875rem 2rem;
  font-size: 1rem;
}

/* Lead form fields */
.lh-lead-fields {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.lh-lead-fields .form-textarea {
  width: 100%;
}
.lh-social-other[hidden] {
  display: none !important;
}
.modal__lead-fields {
  gap: 0.875rem;
}


.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

/* ========================================
   FORM CONTROLS (shared)
======================================== */
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: oklch(0.18 0.005 250 / 0.7);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 4px);
  color: var(--fg);
  font-size: 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  padding: 0 1rem;
}
.form-input { height: 3.5rem; }
.form-input--md { height: 3rem; }
.form-select {
  height: 3rem;
  appearance: none;
  -webkit-appearance: none;
  padding-right: 2.5rem;
  cursor: pointer;
}
.form-textarea { padding: 0.75rem 1rem; resize: none; min-height: 5rem; }

.form-input::placeholder,
.form-textarea::placeholder { color: var(--muted-fg); }

.form-select option { background: var(--card); color: var(--fg); }

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px oklch(0.75 0.15 85 / 0.15);
}

.form-input--error,
.form-select.form-input--error,
.form-textarea.form-input--error {
  border-color: #f87171 !important;
  box-shadow: 0 0 0 3px oklch(0.6 0.18 25 / 0.18) !important;
}

.form-field-error {
  display: block;
  font-size: 0.75rem;
  color: #f87171;
  margin-top: 0.4rem;
}

.form-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--muted-fg);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.form-label--normal {
  font-size: 0.875rem;
  text-transform: none;
  color: var(--fg);
  margin-bottom: 0.5rem;
  letter-spacing: 0;
}

.form-select-wrap { position: relative; }
.form-select-wrap::after {
  content: '';
  position: absolute;
  right: 0.875rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid var(--muted-fg);
  pointer-events: none;
}
.lh-cselect-wrap::after { display: none; }

/* Custom select */
.lh-cselect-native {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.lh-cselect { position: relative; width: 100%; z-index: 1; }
.lh-cselect--open { z-index: 20; }

.lh-cselect__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  width: 100%;
  min-height: 3rem;
  padding: 0 1rem;
  background: oklch(0.18 0.005 250 / 0.7);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 4px);
  color: var(--fg);
  font-size: 1rem;
  text-align: left;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.lh-cselect__trigger:hover {
  border-color: oklch(0.75 0.15 85 / 0.35);
}
.lh-cselect--open .lh-cselect__trigger,
.lh-cselect__trigger:focus-visible {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px oklch(0.75 0.15 85 / 0.15);
  outline: none;
}
.lh-cselect__trigger--error {
  border-color: #f87171 !important;
  box-shadow: 0 0 0 3px oklch(0.6 0.18 25 / 0.18) !important;
}

.lh-cselect__value {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.lh-cselect__value--placeholder { color: var(--muted-fg); }

.lh-cselect__chevron {
  flex-shrink: 0;
  color: var(--muted-fg);
  display: flex;
  transition: transform 0.2s, color 0.2s;
}
.lh-cselect--open .lh-cselect__chevron {
  transform: rotate(180deg);
  color: var(--primary);
}

.lh-cselect__list {
  margin: 0;
  padding: 0.375rem;
  list-style: none;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.875rem;
  box-shadow: 0 8px 32px oklch(0 0 0 / 0.45);
  overflow-y: auto;
  overscroll-behavior: contain;
}
.lh-cselect__list[hidden] { display: none !important; }
.lh-cselect__list--open {
  position: fixed;
  z-index: 10050;
  animation: lh-cselect-in 0.16s ease;
}

@keyframes lh-cselect-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

.lh-cselect__option {
  padding: 0.625rem 0.75rem;
  border-radius: 0.5rem;
  font-size: 0.9375rem;
  color: var(--muted-fg);
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  outline: none;
}
.lh-cselect__option:hover,
.lh-cselect__option:focus-visible {
  background: var(--secondary);
  color: var(--fg);
}
.lh-cselect__option--selected {
  background: oklch(0.75 0.15 85 / 0.12);
  color: var(--primary);
  font-weight: 600;
}
.lh-cselect__option--selected:hover,
.lh-cselect__option--selected:focus-visible {
  background: oklch(0.75 0.15 85 / 0.18);
  color: var(--primary);
}
.lh-cselect__option--disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

/* ========================================
   SECTION BASE (shared header layout)
======================================== */
.section {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
}
@media (min-width: 1024px) { .section { padding: 8rem 0; } }

.section__header {
  text-align: center;
  margin: 0 auto 4rem;
}
@media (min-width: 1024px) { .section__header { margin-bottom: 5rem; } }

.section__badge { margin-bottom: 1.5rem; }

.section__title {
  font-size: clamp(1.875rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  color: var(--fg);
}

.section__desc {
  font-size: 1.125rem;
  color: var(--muted-fg);
  line-height: 1.7;
}

.section__line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
}

/* ========================================
   HEADER
======================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all 0.3s;
}

.header--scrolled {
  background: oklch(0.08 0.005 250 / 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid oklch(0.22 0.005 250 / 0.5);
}

.fdgsdfgsdfg {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
}
@media (min-width: 1024px) { .fdgsdfgsdfg { padding: 0 2rem; } }

.header__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.header__logo-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: calc(var(--radius) + 4px);
  background: oklch(0.75 0.15 85 / 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.dgfhgfdh1 {
  font-size: 1.3rem;
  font-weight: 700;
}

.asdqwe154 { color: var(--primary); }

.header__nav {
  display: none;
  align-items: center;
  gap: 2rem;
}
@media (min-width: 1024px) { .header__nav { display: flex; } }

.header__nav-link {
  font-size: 0.875rem;
  color: var(--muted-fg);
  transition: color 0.2s;
}
.header__nav-link:hover { color: var(--fg); }

.header__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header__phone {
    display: none;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    color: var(--fg);
    transition: color 0.2s;
    font-weight: bold;
}
@media (min-width: 1024px) { .header__phone { display: flex; } }
.header__phone:hover { color: var(--primary); }

.header__tg {
  display: none;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  color: #29a7e0; background: oklch(0.6 0.15 220 / 0.1);
  transition: color 0.2s, background 0.2s;
}
.header__tg svg {
  width: 2rem;
  height: 2rem;
}
@media (min-width: 1024px) { .header__tg { display: flex; } }

/* Dropdown nav item */
.header__nav-dropdown { position: relative; }
.header__nav-dropdown-btn {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--muted-fg);
  transition: color 0.2s;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  font-family: inherit;
}
.header__nav-dropdown-btn:hover,
.header__nav-dropdown.is-open .header__nav-dropdown-btn { color: var(--fg); }
.header__nav-dropdown-chevron {
  transition: transform 0.2s;
  flex-shrink: 0;
}
.header__nav-dropdown.is-open .header__nav-dropdown-chevron { transform: rotate(180deg); }

.header__nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 0.75rem);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.875rem;
  padding: 0.375rem;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.18s, transform 0.18s, visibility 0.18s;
  z-index: 200;
  box-shadow: 0 8px 32px oklch(0 0 0 / 0.4);
}
.header__nav-dropdown.is-open .header__nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.header__nav-dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  color: var(--muted-fg);
  font-size: 0.875rem;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}
.header__nav-dropdown-item:hover { background: var(--secondary); color: var(--fg); }
.header__nav-dropdown-badge {
  margin-left: auto;
  font-size: 0.6875rem;
  font-weight: 600;
  padding: 0.15rem 0.4rem;
  border-radius: 0.25rem;
  background: oklch(0.75 0.15 85 / 0.12);
  color: var(--primary);
}
.header__nav-dropdown-divider {
  height: 1px;
  background: var(--border);
  margin: 0.375rem 0.375rem;
}

.header__cta {
  display: none;
}
@media (min-width: 640px) { .header__cta { display: flex; } }

.header__burger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: calc(var(--radius) + 2px);
  background: var(--secondary);
  color: var(--fg);
}
@media (min-width: 1024px) { .header__burger { display: none; } }

/* ========================================
   MOBILE MENU
======================================== */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 40;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
}
@media (min-width: 1024px) { .mobile-menu { display: none; } }

.mobile-menu--open {
  pointer-events: all;
  opacity: 1;
}

.mobile-menu__overlay {
  position: absolute;
  inset: 0;
  background: oklch(0.08 0.005 250 / 0.8);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.mobile-menu__panel {
  position: absolute;
  top: 5rem;
  left: 1rem;
  right: 1rem;
  border-radius: 1rem;
  padding: 1.5rem;
  transform: translateY(-1rem);
  transition: transform 0.3s;
}

.mobile-menu--open .mobile-menu__panel {
  transform: translateY(0);
}

.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
}

.mobile-menu__nav-link {
  display: block;
  padding: 0.5rem 0;
  font-size: 1.125rem;
  color: var(--fg);
  transition: color 0.2s;
}
.mobile-menu__nav-link:hover { color: var(--primary); }

.mobile-menu__footer {
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.mobile-menu__phone-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--fg);
}

.mobile-menu__phone-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: calc(var(--radius) + 4px);
  background: oklch(0.75 0.15 85 / 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

/* ========================================
   HERO SECTION
======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
}

.asdqwe1543 {
  position: absolute;
  inset: 0;
  background-color: var(--bg);
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.asdqwe15431 {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--bg) 0%, oklch(0.08 0.005 250 / 0.95) 50%, oklch(0.08 0.005 250 / 0.7) 100%);
    opacity: .8;
}

.asdqwe15431-v {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--bg) 0%, transparent 50%, oklch(0.08 0.005 250 / 0.5) 100%);
}

.asfa131 {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image:
    linear-gradient(to right, oklch(0.95 0 0) 1px, transparent 1px),
    linear-gradient(to bottom, oklch(0.95 0 0) 1px, transparent 1px);
  background-size: 80px 80px;
}

.asfa1312 {
  position: absolute;
  top: 25%;
  right: -5rem;
  width: 37.5rem;
  height: 37.5rem;
  background: oklch(0.75 0.15 85 / 0.1);
  border-radius: 50%;
  filter: blur(150px);
  animation: pulse-glow 3s ease-in-out infinite;
}

.asfa1312-cold {
  position: absolute;
  bottom: 0;
  left: -10rem;
  width: 25rem;
  height: 25rem;
  background: oklch(0.18 0.005 250 / 0.2);
  border-radius: 50%;
  filter: blur(120px);
}

.hero__bg-lines {
  position: absolute;
  inset: 0;
  opacity: 0.02;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 100px,
    oklch(0.75 0.15 85) 100px,
    oklch(0.75 0.15 85) 101px
  );
}

.hero__content {
  position: relative;
  z-index: 10;
  width: 100%;
  padding-top: 9rem;
  padding-bottom: 6rem;
}

.hero__grid {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

/* Hero left */
.hero__left {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero__badges {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.hero__heading {
  font-size: clamp(2.5rem, 6vw, 3.7rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.hero__sub {
  color: var(--muted-fg);
  max-width: 32rem;
  line-height: 1.7;
}
@media (min-width: 640px) { .hero__sub { font-size: 1.25rem; } }

.hero__features {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.875rem;
}

.hero__feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted-fg);
}
.hero__feature svg { color: var(--primary); flex-shrink: 0; }

.hero__cta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 1rem;
}
@media (min-width: 640px) { .hero__cta { flex-direction: row; } }

.hero__stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid oklch(0.22 0.005 250 / 0.5);
}

.hero__stat { text-align: center; }

.hero__stat-val {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--fg);
}
.hero__stat-val--accent { color: var(--primary); }

.hero__stat-label {
  font-size: 0.75rem;
  color: var(--muted-fg);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero__stat-divider {
  width: 1px;
  height: 2.5rem;
  background: var(--border);
}

/* Hero right - form */
.gfsdhdfgh5 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
    min-width: 500px;
    flex-shrink: 0;
}
@media (max-width: 1023px) {
  .hero__grid { flex-direction: column; }
  .gfsdhdfgh5 { min-width: unset; flex-shrink: 1; width: 100%; }
}

.hero__form-glow {
  position: absolute;
  width: 25rem;
  height: 25rem;
  background: oklch(0.75 0.15 85 / 0.05);
  border-radius: 50%;
  filter: blur(80px);
}

.hero__form-wrap {
  position: relative;
  width: 100%;
  max-width: 28rem;
}

/* ========================================
   CONTACT FORM (used in hero + modals)
======================================== */
.contact-form {
  border-radius: 1rem;
  padding: 0.25rem;
}

.contact-form__inner {
  background: linear-gradient(135deg, var(--card), oklch(0.18 0.005 250 / 0.5), var(--card));
  border-radius: calc(1rem - 0.25rem);
  padding: 1.5rem;
}
@media (min-width: 640px) { .contact-form__inner { padding: 2rem; } }

.contact-form__price { border-bottom: 1px solid oklch(1 0 0 / 0.08); padding-bottom: 1rem; margin-bottom: 1.25rem; }
.contact-form__price-row { display: flex; align-items: baseline; gap: 0.625rem; margin-bottom: 0.375rem; }
.contact-form__price-val { font-size: 1.75rem; font-weight: 800; color: var(--primary); line-height: 1; }
.contact-form__price-old { font-size: 1rem; color: var(--muted-fg); text-decoration: line-through; }
.contact-form__price-note { display: flex; align-items: center; gap: 0.375rem; font-size: 0.8125rem; color: var(--muted-fg); }
.contact-form__header { text-align: center; margin-bottom: 1.5rem; }

.contact-form__icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: oklch(0.75 0.15 85 / 0.1);
  border: 1px solid oklch(0.75 0.15 85 / 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--primary);
}

.contact-form__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 0.5rem;
}
@media (min-width: 640px) { .contact-form__title { font-size: 1.65rem; } }

.contact-form__subtitle { font-size: 0.875rem; color: var(--muted-fg); }

.contact-form__body {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-form__types {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
}

.contact-form__type-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  padding: 0.75rem 0.25rem;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  background: oklch(0.18 0.005 250 / 0.5);
  color: var(--muted-fg);
  font-size: 0.625rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}
.contact-form__type-btn:hover {
  border-color: oklch(0.75 0.15 85 / 0.5);
  color: var(--fg);
}
.contact-form__type-btn--active {
  background: oklch(0.75 0.15 85 / 0.1);
  border-color: var(--primary);
  color: var(--primary);
}

.contact-form__note {
  font-size: 0.6875rem;
  color: var(--muted-fg);
  text-align: center;
  line-height: 1.5;
}

.contact-form__success {
  display: none;
  text-align: center;
  padding: 2rem 0;
}

.contact-form__success-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: rgb(34 197 94 / 0.1);
  border: 1px solid rgb(34 197 94 / 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: #22c55e;
}

.contact-form__success-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 0.5rem;
}

.contact-form__success-text { font-size: 0.875rem; color: var(--muted-fg); margin-bottom: 1rem; line-height: 1.5; }
.contact-form__success-text strong { color: var(--fg); }
.contact-form__success-promo {
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.45;
  color: var(--primary);
  text-align: center;
  margin: 0 0 0.875rem;
  padding: 0.75rem 1rem;
  border-radius: 0.625rem;
  background: oklch(0.75 0.15 85 / 0.12);
  border: 1px solid oklch(0.75 0.15 85 / 0.28);
}
.modal__success .contact-form__success-promo {
  max-width: 20rem;
  margin-left: auto;
  margin-right: auto;
}
.lh-contacts--success {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.lh-contacts-section {
  padding: 3rem 0;
  border-top: 1px solid var(--border);
}
.lh-contacts-section__inner {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto;
}
.lh-contacts-section__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 0.5rem;
}
.lh-contacts-section__desc {
  font-size: 0.9375rem;
  color: var(--muted-fg);
  margin-bottom: 1.25rem;
}
.lh-contacts-section .modal__social-links {
  justify-content: center;
}
.modal__socials,
.modal__social-icons,
.lh-contacts:not(.lh-contacts--success) {
  overflow: visible;
}
.modal .lh-chip--pill .lh-chip__panel,
.modal .lh-chip--round .lh-chip__panel {
  top: auto;
  bottom: calc(100% + 0.5rem);
  transform: translateX(-50%) translateY(4px);
}
.modal .lh-chip--pill.lh-chip--open .lh-chip__panel,
.modal .lh-chip--round.lh-chip--open .lh-chip__panel {
  transform: translateX(-50%) translateY(0);
}

/* Контакты: раскрытие + копирование (WA/TG) */
.lh-contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: flex-start;
}
.lh-chip {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: stretch;
}
.lh-chip__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 1px solid var(--border);
  background: var(--secondary);
  color: var(--fg);
  font-family: inherit;
  cursor: pointer;
  transition: opacity 0.2s, border-color 0.2s, background 0.2s;
}
.lh-chip__toggle:hover { opacity: 0.9; }
.lh-chip--pill .lh-chip__toggle {
  padding: 0.625rem 1rem;
  border-radius: 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
}
.lh-chip--wa.lh-chip--pill .lh-chip__toggle {
  background: rgb(37 211 102 / 0.1);
  border-color: rgb(37 211 102 / 0.25);
  color: #25d366;
}
.lh-chip--tg.lh-chip--pill .lh-chip__toggle {
  background: rgb(34 158 217 / 0.1);
  border-color: rgb(34 158 217 / 0.25);
  color: #229ed9;
}
.lh-chip--round .lh-chip__toggle {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  padding: 0;
}
.lh-chip--wa.lh-chip--round .lh-chip__toggle {
  background: rgb(37 211 102 / 0.1);
  border-color: rgb(37 211 102 / 0.25);
  color: #25d366;
}
.lh-chip--tg.lh-chip--round .lh-chip__toggle {
  background: rgb(34 158 217 / 0.1);
  border-color: rgb(34 158 217 / 0.25);
  color: #229ed9;
}
.lh-chip--vk.lh-chip--round.lh-chip--link {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgb(0 119 255 / 0.1);
  border: 1px solid rgb(0 119 255 / 0.25);
  color: #0077ff;
  text-decoration: none;
}
.lh-chip--wa.lh-chip--round.lh-chip--link,
.lh-chip--tg.lh-chip--round.lh-chip--link,
.lh-chip--max.lh-chip--round.lh-chip--link {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.lh-chip--wa.lh-chip--round.lh-chip--link {
  background: rgb(37 211 102 / 0.1);
  border: 1px solid rgb(37 211 102 / 0.25);
  color: #25d366;
}
.lh-chip--tg.lh-chip--round.lh-chip--link {
  background: rgb(34 158 217 / 0.1);
  border: 1px solid rgb(34 158 217 / 0.25);
  color: #229ed9;
}
.lh-chip--max.lh-chip--round.lh-chip--link {
  background: rgb(124 58 237 / 0.12);
  border: 1px solid rgb(124 58 237 / 0.28);
  color: #8b5cf6;
}
.lh-chip__panel {
  position: absolute;
  z-index: 1101;
  top: calc(100% + 0.5rem);
  left: 50%;
  transform: translateX(-50%);
  min-width: 12.5rem;
  max-width: min(16rem, calc(100vw - 2rem));
  padding: 0.75rem;
  border-radius: 0.875rem;
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: 0 12px 32px oklch(0 0 0 / 0.45);
  flex-direction: column;
  gap: 0.5rem;
  text-align: center;
  display: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
}
.lh-chip__panel[hidden] {
  display: none !important;
}
.lh-chip--open .lh-chip__panel {
  display: flex !important;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.lh-chip--pill.lh-chip--open .lh-chip__panel,
.lh-chip--round.lh-chip--open .lh-chip__panel {
  transform: translateX(-50%) translateY(0);
}
.lh-chip--pill .lh-chip__panel,
.lh-chip--round .lh-chip__panel {
  transform: translateX(-50%) translateY(-4px);
}
.lh-chip__value {
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--fg);
  word-break: break-all;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  text-align: center;
  width: 100%;
}
.lh-chip__copy {
  font-family: inherit;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.375rem 0.75rem;
  border-radius: 0.5rem;
  border: 1px solid var(--border);
  background: var(--secondary);
  color: var(--primary);
  cursor: pointer;
}
.lh-chip__copy.lh-copy--done,
.lh-copy-row__value.lh-copy--done {
  color: #22c55e;
  border-color: rgb(34 197 94 / 0.35);
}
.lh-chip--widget {
  align-items: flex-end;
  flex-shrink: 0;
}
.lh-chip--widget .lh-chip__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.25rem;
  height: 3.25rem;
  padding: 0;
  border-radius: 50%;
  border: none;
  box-shadow: 0 4px 20px oklch(0 0 0 / 0.45);
  transition: transform 0.2s, box-shadow 0.2s;
}
.lh-chip--widget .lh-chip__toggle:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px oklch(0 0 0 / 0.55);
}
.lh-chip--widget.lh-chip--open .lh-chip__toggle {
  transform: scale(1.05);
  box-shadow: 0 0 0 3px oklch(1 0 0 / 0.12);
}
.lh-chip--widget.lh-chip--wa .lh-chip__toggle {
  background: #25d366;
  color: #fff;
}
.lh-chip--widget.lh-chip--tg .lh-chip__toggle {
  background: #29a7e0;
  color: #fff;
}
.contact-widget .lh-chip--widget {
  width: auto;
  position: relative;
}
.contact-widget .lh-chip--widget .lh-chip__panel {
  top: 50%;
  right: calc(100% + 0.75rem);
  left: auto;
  bottom: auto;
  transform: translateY(-50%) translateX(8px);
}
.contact-widget .lh-chip--widget.lh-chip--open .lh-chip__panel {
  transform: translateY(-50%) translateX(0);
}
.contact-widget__stack {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.625rem;
}
.contact-widget .contact-widget__btn--vk,
.contact-widget .contact-widget__btn--max {
  width: 3.25rem;
  height: 3.25rem;
  padding: 0;
  border-radius: 50%;
  justify-content: center;
}
.contact-widget .contact-widget__btn--vk .contact-widget__label,
.contact-widget .contact-widget__btn--max .contact-widget__label {
  display: none;
}
@media (max-width: 639px) {
  .contact-widget .lh-chip--widget .lh-chip__panel {
    top: auto;
    bottom: calc(100% + 0.65rem);
    right: 0;
    left: auto;
    transform: translateY(6px);
  }
  .contact-widget .lh-chip--widget.lh-chip--open .lh-chip__panel {
    transform: translateY(0);
  }
  .lh-chip--pill .lh-chip__panel,
  .lh-chip--round .lh-chip__panel {
    left: auto;
    right: 0;
    transform: translateY(6px);
  }
  .lh-chip--pill.lh-chip--open .lh-chip__panel,
  .lh-chip--round.lh-chip--open .lh-chip__panel {
    transform: translateY(0);
  }
  .modal__socials .lh-chip--pill .lh-chip__panel,
  .modal__social-icons .lh-chip--round .lh-chip__panel {
    left: 50%;
    right: auto;
    transform: translateX(-50%) translateY(6px);
  }
  .modal__socials .lh-chip--pill.lh-chip--open .lh-chip__panel,
  .modal__social-icons .lh-chip--round.lh-chip--open .lh-chip__panel {
    transform: translateX(-50%) translateY(0);
  }
}

.lh-contacts--success {
  flex-direction: column;
  align-items: stretch;
  gap: 0.5rem;
  width: 100%;
  max-width: 20rem;
  margin-left: auto;
  margin-right: auto;
}
.lh-copy-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.625rem 0.875rem;
  border-radius: 0.75rem;
  background: var(--secondary);
  border: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
}
.lh-copy-row--link:hover {
  border-color: oklch(0.75 0.15 85 / 0.35);
}
.lh-copy-row__label {
  font-size: 0.75rem;
  color: var(--muted-fg);
  flex-shrink: 0;
}
.lh-copy-row__value {
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--fg);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  text-align: right;
}
.lh-copy-row__value--link { color: #0077ff; cursor: pointer; }
.lh-copy-row--wa .lh-copy-row__value { color: #25d366; }
.lh-copy-row--tg .lh-copy-row__value { color: #229ed9; }
.lh-copy-row--max .lh-copy-row__value { color: #8b5cf6; }
.footer__link--static { cursor: default; pointer-events: none; color: var(--muted-fg); }

/* Floating badges around form */
.hero__float-badge {
  position: absolute;
  border-radius: 0.5rem;
  padding: 0.5rem 0.75rem;
  z-index: 10;
}
.hero__float-badge--online {
  top: -0.75rem;
  right: -0.75rem;
  animation: float 6s ease-in-out infinite;
  animation-delay: 0.5s;
}
.hero__float-badge--time {
  bottom: -0.75rem;
  left: -0.75rem;
  animation: float 6s ease-in-out infinite;
  animation-delay: 1.5s;
}
.hero__float-inner {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.hero__float-dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background: #22c55e;
  animation: pulse 2s ease-in-out infinite;
}
.hero__float-icon {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: oklch(0.75 0.15 85 / 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}
.hero__float-text {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--fg);
}

/* ========================================
   CATEGORIES SECTION
======================================== */
.categories {
  background: linear-gradient(to bottom, var(--bg), oklch(0.18 0.005 250 / 0.2), var(--bg));
}

.categories__deco-tl {
  position: absolute;
  top: 0;
  left: 25%;
  width: 24rem;
  height: 24rem;
  background: oklch(0.75 0.15 85 / 0.05);
  border-radius: 50%;
  filter: blur(3rem);
}
.categories__deco-br {
  position: absolute;
  bottom: 0;
  right: 25%;
  width: 24rem;
  height: 24rem;
  background: oklch(0.75 0.15 85 / 0.03);
  border-radius: 50%;
  filter: blur(3rem);
}

.hgdfh536 {
  display: grid;
  gap: 1.5rem;
  align-items: stretch;
}
@media (min-width: 768px) { .hgdfh536 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .hgdfh536 { gap: 2rem; } }

.dfgh5323 {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 28rem;
  border-radius: 1rem;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--border);
  background: var(--card);
  transition: box-shadow 0.5s, border-color 0.5s;
}


.dfgh5323-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-height: 0;
}

.dfgh5323-img {
  position: relative;
  height: 12rem;
  overflow: hidden;
  flex-shrink: 0;
}
@media (min-width: 1024px) {
  .dfgh5323 {
    min-height: 32rem;
  }
  .dfgh5323-img {
    width: 100%;
    height: 200px;
  }
}

.dfgh5323-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.7s;
  display: block;
}

.dfgh5323-img-fade {
    background-color: #11071a;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: .4;
}


/* ========================================
   ADDITIONAL SERVICES BLOCK
======================================== */
.categories__services {
  margin-top: 3rem;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--border);
}

.categories__services-head {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1.25rem 1.5rem;
  background: oklch(0.12 0.005 250 / 0.6);
  border-bottom: 1px solid var(--border);
}

@media (min-width: 768px) {
  .categories__services-head {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
  }
}

.categories__services-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--fg);
}

.categories__services-subtitle {
  font-size: 0.875rem;
  color: var(--muted-fg);
}

.categories__services-grid {
  display: grid;
  grid-template-columns: 1fr;
  align-items: stretch;
}

@media (min-width: 640px) { .categories__services-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .categories__services-grid { grid-template-columns: repeat(4, 1fr); } }

.categories__service {
  display: grid;
  grid-template-rows: auto auto 1fr auto auto;
  height: 100%;
  min-height: 100%;
  padding: 1.25rem 1.5rem;
  gap: 0.5rem;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
  cursor: default;
}

.categories__service:hover {
  background: oklch(0.75 0.15 85 / 0.04);
}

.categories__service-icon-row {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 0.25rem;
}

.categories__service-icon {
  width: 2rem;
  height: 2rem;
  border-radius: 0.5rem;
  background: oklch(0.75 0.15 85 / 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

.categories__service-name {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--fg);
  line-height: 1.3;
}

.categories__service-desc {
  font-size: 0.8125rem;
  color: var(--muted-fg);
  line-height: 1.5;
  margin: 0;
  min-height: 2.75rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.categories__service-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  margin: 0;
  min-height: 1.875rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
}

.categories__service-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin: 0;
  padding-top: 0.875rem;
  border-top: 1px solid oklch(0.22 0.005 250 / 0.6);
  align-self: end;
}

.categories__service-link {
  font-size: 0.75rem;
  color: var(--muted-fg);
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  transition: color 0.2s;
  white-space: nowrap;
}
.categories__service-link:hover { color: var(--primary); }

.categories__service-link--solo {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--primary);
}
.categories__service-link--solo:hover { color: var(--accent); }

.categories__service-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius);
  font-size: 0.75rem;
  font-weight: 500;
  background: var(--primary);
  color: var(--primary-fg);
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}
.categories__service-cta:hover { background: oklch(0.70 0.15 85); }

.dfgh5323-letter {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  transition: all 0.3s;
  background: oklch(0.08 0.005 250 / 0.8);
  border: 1px solid var(--border);
  backdrop-filter: blur(4px);
  color: var(--fg);
}


.dfgh5323-popular {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
}

.dfgh5323-info {
  position: relative;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
}
.dfgh5323-info > div:first-child {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-height: 0;
}
.dfgh5323-info > div:first-child .dfgh5323-title,
.dfgh5323-info > div:first-child .dfgh5323-subtitle,
.dfgh5323-info > div:first-child .dfgh5323-desc,
.dfgh5323-info > div:first-child .dfgh5323-offer,
.dfgh5323-info > div:first-child .dfgh5323-meta {
  margin: 0;
}
.dfgh5323-offer {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.75rem;
  min-height: 5.5rem;
}
@media (min-width: 1024px) {
  .dfgh5323-info {
    padding: 2rem;
  }
}

.dfgh5323-popular-desktop {
  display: none;
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
}
@media (min-width: 1024px) { .dfgh5323-popular-desktop { display: block; } }

.dfgh5323-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 0.25rem;
}
@media (min-width: 1024px) { .dfgh5323-title { font-size: 1.4rem; } }

.dfgh5323-subtitle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
  font-size: 0.875rem;
}

.dfgh5323-desc {
  font-size: 0.875rem;
  color: var(--muted-fg);
  line-height: 1.6;
  margin: 0 0 1rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  min-height: calc(0.875rem * 1.6 * 3);
}

.dfgh5323-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0;
  overflow: visible;
  align-content: flex-end;
  align-items: flex-end;
}

.dfgh5323-price {
  margin: 0;
  padding: 0;
  font-size: clamp(1.375rem, 4vw, 1.75rem);
  font-weight: 700;
  color: var(--primary);
  line-height: 1.2;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}

.dfgh5323-tag {
  font-size: 0.75rem;
  line-height: 1.25;
  padding: 0.375rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--secondary);
  color: var(--muted-fg);
  transition: all 0.2s;
}

.dfgh5323-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
  margin: 0;
  min-height: 1.375rem;
  font-size: 0.875rem;
}
.dfgh5323-meta-item {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  color: var(--muted-fg);
}
.dfgh5323-meta-item svg { color: var(--primary); }

.dfgh5323-footer {
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: center;
}

.dfgh5323-cta {
  width: 100%;
  min-height: 3.125rem;
  padding: 0.875rem 1.25rem;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 0.75rem;
  box-shadow: 0 4px 16px oklch(0.75 0.15 85 / 0.25);
}
.dfgh5323-cta:hover {
  box-shadow: 0 6px 20px oklch(0.75 0.15 85 / 0.35);
}

.dfgh5323-price-val {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--fg);
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}
.dfgh5323-price-unit { font-size: 0.875rem; color: var(--muted-fg); }
.dfgh5323-price-old { font-size: 0.875rem; color: var(--muted-fg); text-decoration: line-through; }

.dfgh5323-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, oklch(0.75 0.15 85 / 0.1), transparent, oklch(0.75 0.15 85 / 0.05));
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
}


.dfgh5323-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--primary), var(--primary), oklch(0.75 0.15 85 / 0.5));
  transition: background 0.5s;
}


.categories__more {
  margin-top: 3rem;
  padding: 1.5rem 2rem;
  border-radius: 1rem;
  background: oklch(0.12 0.005 250 / 0.5);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 1024px) {
  .categories__more {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.categories__more-title { font-size: 1.25rem; font-weight: 700; color: var(--fg); margin-bottom: 0.5rem; }
.categories__more-text { font-size: 0.875rem; color: var(--muted-fg); }

.categories__guarantees {
  margin-top: 3rem;
  display: grid;
  gap: 1rem;
}
@media (min-width: 640px) { .categories__guarantees { grid-template-columns: repeat(3, 1fr); } }

.categories__guarantee {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border-radius: 0.75rem;
  background: oklch(0.18 0.005 250 / 0.3);
  border: 1px solid oklch(0.22 0.005 250 / 0.5);
}

.categories__guarantee-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.5rem;
  background: oklch(0.75 0.15 85 / 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

.categories__guarantee-title { font-weight: 600; color: var(--fg); }
.categories__guarantee-text { font-size: 0.8125rem; color: var(--muted-fg); }

/* ========================================
   PROCESS SECTION
======================================== */
.process__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.process__bg-overlay {
  position: absolute;
  inset: 0;
  background: oklch(0.08 0.005 250 / 0.9);
}
.process__bg-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, var(--bg), transparent, var(--bg));
}
.process__glow {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 31rem;
  height: 31rem;
  background: oklch(0.75 0.15 85 / 0.05);
  border-radius: 50%;
  filter: blur(150px);
}

.process__steps {
  display: grid;
  gap: 2rem;
  position: relative;
}
.process__steps::before {
  content: '';
  position: absolute;
  left: 2rem;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, oklch(0.75 0.15 85 / 0.5), var(--border), oklch(0.75 0.15 85 / 0.5));
}
@media (min-width: 1024px) {
  .process__steps {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
  .process__steps::before { display: none; }
}

.process__step {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}
@media (min-width: 1024px) {
  .process__step {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }
  .process__step:nth-child(even) { padding-top: 6rem; }
}

.process__step-icon-wrap {
  flex-shrink: 0;
  margin-bottom: 0;
  position: relative;
}
@media (min-width: 1024px) { .process__step-icon-wrap { margin-bottom: 1.5rem; } }

.process__step-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  background: var(--card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  position: relative;
}

.process__step-num {
  position: absolute;
  top: -0.5rem;
  right: -0.5rem;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: var(--primary);
  color: var(--primary-fg);
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process__step-connector { display: none; }
@media (min-width: 1024px) {
  .process__step:not(:last-child) .process__step-connector {
    display: block;
    position: absolute;
    left: 100%;
    top: 2rem;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, var(--border), oklch(0.75 0.15 85 / 0.3), var(--border));
  }
}

.process__step-content { flex: 1; }
@media (min-width: 1024px) { .process__step-content { text-align: center; } }

.process__step-label {
  font-size: 0.75rem;
  color: var(--primary);
  font-family: monospace;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
  display: none;
}
@media (min-width: 1024px) { .process__step-label { display: block; } }

.process__step-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 0.5rem;
}

.process__step-desc {
  font-size: 0.875rem;
  color: var(--muted-fg);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}
@media (min-width: 1024px) {
  .process__step-desc { max-width: 12.5rem; margin-left: auto; margin-right: auto; }
}

.process__step-duration {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  background: var(--secondary);
  font-size: 0.75rem;
  color: var(--muted-fg);
}
.process__step-dot {
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  background: var(--primary);
}

.process__summary {
  margin-top: 5rem;
  border-radius: 1rem;
  padding: 2rem 3rem;
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  text-align: center;
}
@media (min-width: 640px) {
  .process__summary {
    flex-direction: row;
    justify-content: center;
    text-align: left;
  }
}

.process__summary-val {
  font-size: clamp(2.5rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.5rem;
  color: var(--fg);
}
.process__summary-val--primary { color: var(--primary); }
.process__summary-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted-fg);
}
.process__summary-div {
  width: 1px;
  height: 4rem;
  background: var(--border);
  display: none;
}
@media (min-width: 640px) { .process__summary-div { display: block; } }

/* ========================================
   TRUST SECTION
======================================== */
.trust {
  background: oklch(0.18 0.005 250 / 0.3);
}
.trust__bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.015;
  background-image: repeating-linear-gradient(
    45deg, transparent, transparent 60px,
    oklch(0.95 0 0) 60px, oklch(0.95 0 0) 61px
  );
}
.trust__glow {
  position: absolute;
  left: 0;
  top: 25%;
  width: 25rem;
  height: 25rem;
  background: oklch(0.75 0.15 85 / 0.05);
  border-radius: 50%;
  filter: blur(150px);
}

.trust__grid {
  display: grid;
  gap: 4rem;
  align-items: center;
}
@media (min-width: 1024px) { .trust__grid { grid-template-columns: 1fr 1fr; gap: 5rem; } }

.trust__left {}

.trust__points {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.trust__point {
  display: flex;
  gap: 1.25rem;
  padding: 1.25rem;
  border-radius: 0.75rem;
  background: oklch(0.12 0.005 250 / 0.5);
  border: 1px solid var(--border);
  transition: border-color 0.2s;
}
.trust__point:first-child { border-color: oklch(0.75 0.15 85 / 0.3); }

.trust__point-icon {
  flex-shrink: 0;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.75rem;
  background: oklch(0.75 0.15 85 / 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  transition: background 0.2s;
}
.trust__point:first-child .trust__point-icon { background: oklch(0.75 0.15 85 / 0.2); }

.trust__point-body { flex: 1; min-width: 0; }
.trust__point-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.25rem;
}
.trust__point-title { font-size: 1.125rem; font-weight: 700; color: var(--fg); }
.trust__point-stat { font-size: 1.125rem; font-weight: 700; color: var(--primary); }
.trust__point-stat-label { font-size: 0.75rem; color: var(--muted-fg); text-align: right; }
.trust__point-desc { font-size: 0.875rem; color: var(--muted-fg); line-height: 1.6; }

.trust__visual { position: relative; }
.trust__visual-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.trust__visual-bg-inner {
  width: 22rem;
  height: 22rem;
  background: oklch(0.75 0.15 85 / 0.05);
  border-radius: 50%;
  filter: blur(100px);
}

.trust__cert {
  position: relative;
  border-radius: 1rem;
  padding: 2rem 2.5rem;
}

.trust__cert-head {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}
.trust__cert-head-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 0.75rem;
  background: oklch(0.75 0.15 85 / 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}
.trust__cert-title { font-size: 1.25rem; font-weight: 700; color: var(--fg); margin-bottom: 0.25rem; }
.trust__cert-subtitle { font-size: 0.875rem; color: var(--muted-fg); }

.trust__cert-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.trust__cert-stat {
  text-align: center;
  padding: 1rem;
  border-radius: 0.75rem;
  background: oklch(0.18 0.005 250 / 0.5);
}
.trust__cert-stat-val { font-size: 1.875rem; font-weight: 700; margin-bottom: 0.25rem; color: var(--fg); }
.trust__cert-stat-val--primary { color: var(--primary); }
.trust__cert-stat-label { font-size: 0.75rem; color: var(--muted-fg); text-transform: uppercase; letter-spacing: 0.05em; }

.trust__cert-badges { display: flex; flex-direction: column; gap: 0.75rem; }
.trust__cert-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  border-radius: 0.5rem;
  background: rgb(34 197 94 / 0.1);
  border: 1px solid rgb(34 197 94 / 0.2);
}
.trust__cert-badge-icon {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: rgb(34 197 94 / 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #22c55e;
}
.trust__cert-badge-text { font-size: 0.875rem; font-weight: 500; color: #22c55e; flex: 1; }
.trust__cert-badge-check { color: #22c55e; }

.trust__cert-foot {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.trust__qr {
  width: 4rem;
  height: 4rem;
  border-radius: 0.5rem;
  background: var(--secondary);
  padding: 0.5rem;
}
.trust__qr-grid {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.trust__qr-cell { border-radius: 1px; }
.trust__qr-cell--on { background: oklch(0.95 0 0 / 0.8); }
.trust__serial-label { font-size: 0.75rem; color: var(--muted-fg); margin-bottom: 0.25rem; text-align: right; }
.trust__serial-num { font-size: 0.875rem; font-family: monospace; color: var(--fg); }

.trust__float {
  position: absolute;
  top: -1.5rem;
  right: -1.5rem;
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
}
.trust__float-inner { display: flex; align-items: center; gap: 0.5rem; }
.trust__float-dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background: #22c55e;
}
.trust__float-text { font-size: 0.875rem; font-weight: 500; color: var(--fg); }

/* ========================================
   TESTIMONIALS SECTION
======================================== */
.testimonials { background: var(--bg); }
.testimonials__glow {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 37.5rem;
  height: 18.75rem;
  background: oklch(0.75 0.15 85 / 0.05);
  border-radius: 50%;
  filter: blur(150px);
}

.testimonials__head {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3rem;
}
@media (min-width: 1024px) {
  .testimonials__head {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}

.testimonials__controls { display: flex; align-items: center; gap: 0.75rem; }

.testimonials__btn {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: var(--secondary);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fg);
  transition: all 0.2s;
  cursor: pointer;
}
.testimonials__btn:hover { background: var(--card); border-color: oklch(0.75 0.15 85 / 0.3); }

.testimonials__slider { overflow: hidden; }
.testimonials__track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonials__card {
  flex: 0 0 100%;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.5rem 2rem;
}
@media (min-width: 640px) { .testimonials__card { flex: 0 0 calc(50% - 0.75rem); } }
@media (min-width: 1024px) { .testimonials__card { flex: 0 0 calc(33.333% - 1rem); } }

.testimonials__card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}
.testimonials__quote { color: oklch(0.75 0.15 85 / 0.2); }

.testimonials__stars { display: flex; gap: 0.25rem; }
.testimonials__star { color: var(--primary); fill: var(--primary); }
.testimonials__star--empty { color: var(--muted-fg); fill: none; }

.testimonials__text {
  color: var(--fg);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  min-height: 5rem;
}

.testimonials__card-foot {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.testimonials__author { display: flex; align-items: center; gap: 0.75rem; }
.testimonials__avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  flex-shrink: 0;
  display: block;
}
.testimonials__name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--fg);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.testimonials__verified {
  font-size: 0.625rem;
  padding: 0.125rem 0.375rem;
  border-radius: 999px;
  border: 1px solid rgb(34 197 94 / 0.3);
  color: #22c55e;
}
.testimonials__location {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.75rem;
  color: var(--muted-fg);
  margin-top: 0.25rem;
}

.testimonials__dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}
.testimonials__dot {
  position: relative;
  min-width: 48px;
  min-height: 48px;
  padding: 0;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
}
.testimonials__dot::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 999px;
  background: var(--border);
  transform: translate(-50%, -50%);
  transition: all 0.3s;
}
.testimonials__dot--active::after {
  width: 2rem;
  background: var(--primary);
}

.testimonials__rating {
  margin-top: 4rem;
  border-radius: 1rem;
  padding: 2rem 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}
@media (min-width: 640px) {
  .testimonials__rating {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}
.testimonials__rating-score { display: flex; align-items: center; gap: 1rem; }
.testimonials__rating-val { font-size: 3rem; font-weight: 700; color: var(--primary); }
.testimonials__rating-stars { display: flex; gap: 0.25rem; margin-bottom: 0.25rem; }
.testimonials__rating-count { font-size: 0.875rem; color: var(--muted-fg); }
.testimonials__rating-stats { display: flex; align-items: center; gap: 2rem; text-align: center; }
.testimonials__rating-stat-val { font-size: 1.5rem; font-weight: 700; color: var(--fg); }
.testimonials__rating-stat-label { font-size: 0.75rem; color: var(--muted-fg); }
.testimonials__rating-div { width: 1px; height: 2.5rem; background: var(--border); }

/* Review form */
.testimonials__review {
  margin-top: 2rem;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid oklch(0.75 0.17 85 / 0.25);
  background: oklch(0.13 0.008 85 / 0.6);
}

.testimonials__review-top {
  padding: 1.25rem 1.5rem 0;
}
.testimonials__review-title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 0.2rem;
}
.testimonials__review-sub {
  font-size: 0.8125rem;
  color: var(--muted-fg);
  margin: 0;
}

/* Form body */
.testimonials__review-form {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  padding: 1.25rem 1.5rem;
}
.testimonials__review-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
@media (max-width: 639px) {
  .testimonials__review-grid { grid-template-columns: 1fr; }
.hero__stats {
  flex-direction: column;
  gap: 0;
}
}
.testimonials__review-field {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}
.testimonials__review-label {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--muted-fg);
  letter-spacing: 0.01em;
}
.testimonials__review-req { color: var(--primary); }
.testimonials__review-grid .form-input,
.testimonials__review-grid select.form-input {
  width: 100%;
  background-color: var(--card);
  color: var(--fg);
  cursor: pointer;
}
input[type="month"].form-input { color-scheme: dark; cursor: pointer; }
.testimonials__review-stars {
  display: flex;
  gap: 0.15rem;
  padding: 0.3rem 0;
}
.testimonials__review-star {
  background: none;
  border: none;
  padding: 0.1rem;
  cursor: pointer;
  color: oklch(0.30 0.01 250);
  transition: color 0.12s, transform 0.12s;
  line-height: 1;
}
.testimonials__review-star:hover,
.testimonials__review-star.is-active { color: var(--primary); }
.testimonials__review-star:hover { transform: scale(1.18); }
.testimonials__review-textarea {
  resize: none;
  min-height: 86px;
  line-height: 1.6;
}
.testimonials__review-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.testimonials__review-hint {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.8rem;
  color: var(--muted-fg);
}
.testimonials__review-hint svg { color: var(--primary); flex-shrink: 0; }
.testimonials__review-success {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.75rem 1.5rem;
  color: var(--fg);
}
.testimonials__review-success svg { color: var(--primary); flex-shrink: 0; }

/* ========================================
   SEO ARTICLE SECTION
======================================== */
.article { background: var(--bg); }
.article__glow {
  position: absolute;
  left: 0;
  top: 33%;
  width: 25rem;
  height: 25rem;
  background: oklch(0.75 0.15 85 / 0.05);
  border-radius: 50%;
  filter: blur(150px);
}

.article__inner {
  position: relative;
  z-index: 10;
  margin: 0 auto;
}
.article__title {
  font-size: clamp(1.875rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 1.5rem;
  margin-top: 0;
}
.article__text {
  color: var(--muted-fg);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}
.article__subtitle {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--fg);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.article__expandable {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.5s ease, opacity 0.3s ease;
}
.article__expandable--open { max-height: 2000px; opacity: 1; }

.article__toggle-wrap {
  position: relative;
  margin-top: 2rem;
}
.article__toggle-wrap::before {
  content: '';
  position: absolute;
  top: -5rem;
  left: 0;
  right: 0;
  height: 5rem;
  background: linear-gradient(to top, var(--bg), transparent);
  pointer-events: none;
  transition: opacity 0.3s;
}
.article__toggle-wrap--expanded::before { opacity: 0; }

/* ========================================
   FAQ SECTION
======================================== */
.faq { background: oklch(0.18 0.005 250 / 0.3); }
.faq__glow {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 25rem;
  height: 25rem;
  background: oklch(0.75 0.15 85 / 0.05);
  border-radius: 50%;
  filter: blur(150px);
}

.faq__grid {
  display: grid;
  gap: 3rem;
}
@media (min-width: 1024px) { .faq__grid { grid-template-columns: 2fr 3fr; gap: 5rem; } }

.faq__sticky {
  position: static;
}
@media (min-width: 1024px) { .faq__sticky { position: sticky; top: 6rem; } }

.faq__contact-box {
  margin-top: 2rem;
  border-radius: 0.75rem;
  padding: 1.5rem;
}
.faq__contact-box-title { font-size: 1.125rem; font-weight: 600; color: var(--fg); margin-bottom: 0.5rem; }
.faq__contact-box-text { font-size: 0.875rem; color: var(--muted-fg); margin-bottom: 1rem; }
.faq__contact-box-link {
  display: inline-flex;
  align-items: center;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary);
  transition: color 0.2s;
}
.faq__contact-box-link:hover { color: oklch(0.70 0.15 85); }

.faq__list { display: flex; flex-direction: column; gap: 1rem; }

.faq__item {
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  background: oklch(0.12 0.005 250 / 0.5);
  transition: border-color 0.3s, background 0.3s;
  overflow: hidden;
}
.faq__item--open { background: var(--card); border-color: oklch(0.75 0.15 85 / 0.3); }

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  text-align: left;
  cursor: pointer;
  background: none;
  color: var(--fg);
}
.faq__question-text {
  font-size: 1rem;
  font-weight: 600;
  color: var(--fg);
  padding-right: 1rem;
  line-height: 1.4;
}
.faq__question-icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  background: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted-fg);
  transition: background 0.2s, color 0.2s;
}
.faq__item--open .faq__question-icon { background: oklch(0.75 0.15 85 / 0.2); color: var(--primary); }

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq__item--open .faq__answer { max-height: 24rem; }

.faq__answer-inner { padding: 0 1.5rem 1.5rem; }
.faq__answer-text { color: var(--muted-fg); line-height: 1.7; }

/* ========================================
   CTA SECTION
======================================== */
.cta {
  background: linear-gradient(135deg, var(--bg), var(--card), oklch(0.18 0.005 250 / 0.3));
}
.cta__glow {
  position: absolute;
  left: 25%;
  top: 0;
  width: 31rem;
  height: 31rem;
  background: oklch(0.75 0.15 85 / 0.1);
  border-radius: 50%;
  filter: blur(200px);
}
.cta__glow--b {
  position: absolute;
  right: 25%;
  bottom: 0;
  width: 25rem;
  height: 25rem;
  background: oklch(0.75 0.15 85 / 0.05);
  border-radius: 50%;
  filter: blur(150px);
}

.cta__grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) { .cta__grid { grid-template-columns: 1fr 1fr; gap: 5rem; } }

.cta__benefits { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
.cta__benefit { display: flex; align-items: center; gap: 0.75rem; }

/* cta__inner layout — used on category/service inner pages */
.cta__inner { display: grid; gap: 3rem; align-items: start; }
@media (min-width: 1024px) { .cta__inner { grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; } }
.cta__content {}
.cta__desc { color: var(--muted-fg); margin-bottom: 1.5rem; line-height: 1.7; }
.cta__trust { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.5rem; }
.cta__trust-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; color: var(--muted-fg); }
.cta__trust-item svg { color: var(--primary); flex-shrink: 0; }
.cta__form-col {}
.cta__form-body { display: flex; flex-direction: column; gap: 1rem; }
.cta__form-field-group { display: flex; flex-direction: column; gap: 1rem; }
@media (min-width: 640px) {
  .cta__form-field-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .cta__form-field-group .cta__form-field:has(.lh-cselect-wrap),
  .cta__form-field-group .cta__form-field:has(.form-textarea) {
    grid-column: 1 / -1;
  }
}
.cta__form-field { display: flex; flex-direction: column; gap: 0.5rem; }
.cta__benefit-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  background: oklch(0.75 0.15 85 / 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}
.cta__benefit-text { color: var(--fg); }

.cta__contacts { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.cta__contact {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  background: var(--secondary);
  border: 1px solid var(--border);
  font-size: 0.875rem;
  color: var(--fg);
  transition: background 0.2s, border-color 0.2s;
}
.cta__contact:hover { background: var(--card); border-color: oklch(0.75 0.15 85 / 0.3); }
.cta__contact svg { color: var(--primary); flex-shrink: 0; }
.cta__contact--wa svg { color: #25d366; }
.cta__contact--tg svg { color: #229ed9; }
.cta__contact--vk svg { color: #0077ff; }

.cta__form-wrap { position: relative; }
.cta__form-glow-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta__form-glow-bg-inner {
  width: 22rem;
  height: 22rem;
  background: oklch(0.75 0.15 85 / 0.05);
  border-radius: 50%;
  filter: blur(100px);
}

.cta__form {
  position: relative;
  border-radius: 1rem;
  padding: 2rem 2.5rem;
}
.cta__form-title { font-size: 1.5rem; font-weight: 700; color: var(--fg); margin-bottom: 0.5rem; text-align: center; }
.cta__form-subtitle { font-size: 0.875rem; color: var(--muted-fg); text-align: center; margin-bottom: 2rem; }
.cta__form-fields { display: flex; flex-direction: column; gap: 1.25rem; }
.cta__form-note { font-size: 0.6875rem; color: var(--muted-fg); text-align: center; margin-top: 0.5rem; }
.cta__form-note a { color: var(--primary); }
.cta__form-note a:hover { text-decoration: underline; }

.cta__bonus-wrap { margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--border); }
.cta__bonus {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  border-radius: 0.5rem;
  background: rgb(34 197 94 / 0.1);
  border: 1px solid rgb(34 197 94 / 0.2);
}
.cta__bonus-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgb(34 197 94 / 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #22c55e;
  flex-shrink: 0;
}
.cta__bonus-title { font-size: 0.875rem; font-weight: 600; color: #22c55e; }
.cta__bonus-sub { font-size: 0.75rem; color: rgb(34 197 94 / 0.7); }

/* ========================================
   FOOTER
======================================== */
.footer {
  background: var(--card);
  border-top: 1px solid var(--border);
  position: relative;
}
.footer__main { padding: 4rem 0 5rem; }
.footer__grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .footer__grid { grid-template-columns: 2fr 1fr 1fr 1.5fr; } }

.footer__brand {}
.footer__logo { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.5rem; }
.footer__logo-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: calc(var(--radius) + 4px);
  background: oklch(0.75 0.15 85 / 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}
.footer__logo-name { font-size: 1.125rem; font-weight: 700; }
.footer__logo-accent { color: var(--primary); }

.footer__brand-desc {
  font-size: 0.875rem;
  color: var(--muted-fg);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.footer__socials { display: flex; gap: 0.75rem; }
.footer__social {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  background: var(--secondary);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted-fg);
  transition: all 0.2s;
}
.footer__social:hover { background: oklch(0.75 0.15 85 / 0.1); border-color: oklch(0.75 0.15 85 / 0.3); }

.footer__col {}
.footer__col-title {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--fg);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}
.footer__links { display: flex; flex-direction: column; gap: 0.75rem; }
.footer__link { font-size: 0.875rem; color: var(--muted-fg); transition: color 0.2s; }
.footer__link:hover { color: var(--primary); }
.footer__working { display: flex; align-items: center; gap: 0.5rem; font-size: 0.8125rem; color: var(--muted-fg); margin-top: 1rem; }

.footer__contacts { display: flex; flex-direction: column; gap: 1rem; }
.footer__contact {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--muted-fg);
  transition: color 0.2s;
}
.footer__contact:hover { color: var(--primary); }
.footer__contact svg { color: var(--primary); flex-shrink: 0; margin-top: 0.1rem; }

.footer__schedule {
  margin-top: 1.5rem;
  padding: 1rem;
  border-radius: 0.5rem;
  background: oklch(0.18 0.005 250 / 0.5);
  border: 1px solid var(--border);
}
.footer__schedule-label { font-size: 0.75rem; color: var(--muted-fg); margin-bottom: 0.25rem; }
.footer__schedule-value { font-size: 0.875rem; font-weight: 500; color: var(--fg); }

.footer__bottom { border-top: 1px solid var(--border); padding: 1.5rem 0; }
.footer__bottom-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
@media (min-width: 640px) { .footer__bottom-inner { flex-direction: row; justify-content: space-between; } }

.footer__copyright { font-size: 0.875rem; color: var(--muted-fg); text-align: center; }
@media (min-width: 640px) { .footer__copyright { text-align: left; } }

.footer__legal { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }
.footer__legal-link { font-size: 0.75rem; color: var(--muted-fg); transition: color 0.2s; }
.footer__legal-link:hover { color: var(--primary); }

/* ========================================
   MODALS
======================================== */
.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
}
.modal--open { pointer-events: all; opacity: 1; }

.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgb(0 0 0 / 0.7);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.modal__dialog {
  position: relative;
  width: 100%;
  max-width: 30rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  overflow: hidden;
  transform: translateY(1rem);
  transition: transform 0.3s;
  max-height: 90vh;
  overflow-y: auto;
}
.modal--open .modal__dialog { transform: translateY(0); }

.modal--age-gate {
  z-index: 200;
}
.modal--age-gate:not(.modal--open) {
  pointer-events: none;
  visibility: hidden;
}
.modal--age-gate:not(.modal--open) .modal__overlay {
  pointer-events: none;
}
.modal-age__dialog {
  max-width: 24rem;
}
.modal-age__actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.modal-age__confirm {
  min-height: 3.25rem;
  padding: 1rem 1.5rem;
  font-size: 1.125rem;
  font-weight: 600;
}

.modal__gradient {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  height: 8rem;
  background: linear-gradient(to bottom, oklch(0.75 0.15 85 / 0.1), transparent);
  pointer-events: none;
  margin-bottom: -8rem;
}

.modal__body {
  position: relative;
  padding: 1.5rem;
}
@media (min-width: 640px) { .modal__body { padding: 2rem; } }

.modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--secondary);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted-fg);
  cursor: pointer;
  transition: all 0.2s;
  z-index: 1;
}
.modal__close:hover { background: var(--card); color: var(--fg); }

.modal__header { text-align: center; margin-bottom: 1.5rem; }
.modal__header-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: oklch(0.75 0.15 85 / 0.1);
  border: 1px solid oklch(0.75 0.15 85 / 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--primary);
}
.modal__title { font-size: 1.5rem; font-weight: 700; color: var(--fg); margin-bottom: 0.5rem; }
.modal__subtitle { font-size: 0.875rem; color: var(--muted-fg); }

.modal__form { display: flex; flex-direction: column; gap: 1rem; }

.modal__input-wrap { position: relative; }
.modal__input-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted-fg);
  pointer-events: none;
}
.modal__input-wrap .form-input { padding-left: 3rem; }

.modal__textarea-wrap { position: relative; }
.modal__textarea-icon {
  position: absolute;
  left: 1rem;
  top: 1rem;
  color: var(--muted-fg);
  pointer-events: none;
}
.modal__textarea-wrap .form-textarea { padding-left: 3rem; }

.modal__divider {
  position: relative;
  margin: 1.5rem 0;
  display: flex;
  align-items: center;
}
.modal__divider::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  border-top: 1px solid var(--border);
}
.modal__divider-text {
  position: relative;
  margin: 0 auto;
  padding: 0 0.75rem;
  background: var(--card);
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--muted-fg);
}

.modal__socials { display: flex; align-items: center; justify-content: center; gap: 0.75rem; }
.modal__social-label { font-size: 0.75rem; color: var(--muted-fg); margin-bottom: 0.5rem; }
.modal__social-links { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.modal__form-socials { margin-top: 0.5rem; margin-bottom: 0.25rem; }
.modal__social-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1rem;
  border-radius: 0.75rem;
  border: 1px solid;
  font-size: 0.875rem;
  font-weight: 500;
  transition: opacity 0.2s;
}
.modal__social-link:hover { opacity: 0.8; }
.modal__social-link--tg { background: rgb(34 158 217 / 0.1); border-color: rgb(34 158 217 / 0.2); color: #229ED9; }
.modal__social-link--wa { background: rgb(37 211 102 / 0.1); border-color: rgb(37 211 102 / 0.2); color: #25D366; }
.modal__social-link--vb { background: rgb(115 96 242 / 0.1); border-color: rgb(115 96 242 / 0.2); color: #7360F2; }
.modal__social-link--vk { background: rgb(0 119 255 / 0.1); border-color: rgb(0 119 255 / 0.2); color: #0077ff; }
.modal__social-link--max { background: rgb(124 58 237 / 0.12); border-color: rgb(124 58 237 / 0.25); color: #8b5cf6; }

.modal__social-icons { display: flex; align-items: center; justify-content: center; gap: 0.75rem; }
.modal__social-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  border: 1px solid;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
}
.modal__social-icon:hover { opacity: 0.8; }
.modal__social-icon--tg { background: rgb(34 158 217 / 0.1); border-color: rgb(34 158 217 / 0.2); color: #229ED9; }
.modal__social-icon--wa { background: rgb(37 211 102 / 0.1); border-color: rgb(37 211 102 / 0.2); color: #25D366; }
.modal__social-icon--vb { background: rgb(115 96 242 / 0.1); border-color: rgb(115 96 242 / 0.2); color: #7360F2; }
.modal__social-icon--vk { background: rgb(0 119 255 / 0.1); border-color: rgb(0 119 255 / 0.2); color: #0077ff; font-size: 0.75rem; font-weight: 700; }
.modal__social-icon--ph { background: oklch(0.75 0.15 85 / 0.1); border-color: oklch(0.75 0.15 85 / 0.2); color: var(--primary); }

.modal__note { font-size: 0.6875rem; color: var(--muted-fg); text-align: center; line-height: 1.5; }
.modal__note a { color: var(--primary); }

/* modal__form-field — used in category.php / service.php modals */
.modal__form-field { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 0.75rem; }
.modal__form-note { font-size: 0.6875rem; color: var(--muted-fg); text-align: center; line-height: 1.5; margin-top: 0.5rem; }
.modal__form-note a { color: var(--primary); }

/* input-icon-wrap — used in CTA and modal forms */
.input-icon-wrap { position: relative; }
.input-icon-wrap > svg { position: absolute; left: 0.875rem; top: 50%; transform: translateY(-50%); color: var(--muted-fg); pointer-events: none; }
.input-icon-wrap > input,
.input-icon-wrap > select { padding-left: 2.75rem; }

/* cta__bg-line — decorative */
.cta__bg-line { position: absolute; inset: 0; background: linear-gradient(135deg, var(--primary) 0%, transparent 60%); opacity: 0.03; pointer-events: none; }

.modal__success { display: none; text-align: center; padding: 2rem 0; }
.modal__success-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: rgb(34 197 94 / 0.1);
  border: 1px solid rgb(34 197 94 / 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: #22c55e;
}
.modal__success-title { font-size: 1.25rem; font-weight: 700; color: var(--fg); margin-bottom: 0.5rem; }
.modal__success-text { font-size: 0.875rem; color: var(--muted-fg); margin-bottom: 1.5rem; }

/* Spinner */
.spinner {
  display: inline-block;
  width: 1.25rem;
  height: 1.25rem;
  border: 2px solid rgb(0 0 0 / 0.3);
  border-top-color: rgb(0 0 0);
  border-radius: 50%;
  flex-shrink: 0;
}


    .cat-hero {
      position: relative;
      padding: 8rem 0 5rem;
      overflow: hidden;
    }
    .cat-hero__bg {
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, var(--bg), var(--bg), oklch(0.18 0.005 250 / 0.3));
    }
    .cat-hero__glow-r {
      position: absolute;
      right: -5rem;
      top: 25%;
      width: 25rem;
      height: 25rem;
      background: oklch(0.75 0.15 85 / 0.1);
      border-radius: 50%;
      filter: blur(150px);
    }
    .cat-hero__glow-l {
      position: absolute;
      left: -5rem;
      bottom: 0;
      width: 18rem;
      height: 18rem;
      background: oklch(0.18 0.005 250 / 0.3);
      border-radius: 50%;
      filter: blur(100px);
    }
    .cat-hero__grid {
      display: grid;
      gap: 3rem;
      align-items: center;
    }
    @media (min-width: 1024px) { .cat-hero__grid { grid-template-columns: 1fr 1fr; } }

    .cat-breadcrumb {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      color: var(--muted-fg);
      font-size: 0.875rem;
      margin-bottom: 2rem;
      transition: color 0.2s;
    }
    .cat-breadcrumb:hover { color: var(--primary); }
    .cat-breadcrumb__link { color: var(--muted-fg); text-decoration: none; transition: color 0.2s; }
    .cat-breadcrumb__link:hover { color: var(--primary); }
    .cat-breadcrumb__sep { color: var(--border); margin: 0 0.25rem; }
    .cat-breadcrumb__current { color: var(--fg); }

    .cat-features { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2rem; }
    .cat-feature { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; color: var(--muted-fg); }
    .cat-feature svg { color: var(--primary); }

    .cat-price-card {
      width: 100%;
      max-width: 28rem;
      padding: 2rem;
      border-radius: 1rem;
      background: var(--card);
      border: 1px solid var(--border);
      position: relative;
      overflow: hidden;
    }
    .cat-price-card::before {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      width: 8rem;
      height: 8rem;
      background: oklch(0.75 0.15 85 / 0.1);
      border-radius: 50%;
      filter: blur(3rem);
    }
    .cat-price-letter {
      width: 5rem;
      height: 5rem;
      border-radius: 0.75rem;
      background: oklch(0.75 0.15 85 / 0.2);
      border: 1px solid oklch(0.75 0.15 85 / 0.3);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2.5rem;
      font-weight: 700;
      color: var(--primary);
      margin-bottom: 1.5rem;
      position: relative;
    }
    .cat-price-detail { display: flex; align-items: center; gap: 0.75rem; font-size: 0.875rem; color: var(--muted-fg); margin-bottom: 0.75rem; }
    .cat-price-detail-icon {
      width: 2rem;
      height: 2rem;
      border-radius: 0.5rem;
      background: var(--secondary);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--primary);
      flex-shrink: 0;
    }

    .cat-info { background: oklch(0.18 0.005 250 / 0.2); position: relative; overflow: hidden; padding: 5rem 0; }
    .cat-info__grid {
      display: grid;
      gap: 2rem;
    }
    @media (min-width: 1024px) { .cat-info__grid { grid-template-columns: 1fr 1fr 1fr; } }
    .cat-info__card {
      padding: 1.5rem;
      border-radius: 0.75rem;
      background: var(--card);
      border: 1px solid var(--border);
    }
    .cat-info__card-icon {
      width: 2.5rem;
      height: 2.5rem;
      border-radius: 0.5rem;
      background: oklch(0.75 0.15 85 / 0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--primary);
      margin-bottom: 1rem;
    }
    .cat-info__card-title { font-size: 1.125rem; font-weight: 600; color: var(--fg); margin-bottom: 1rem; }
    .cat-info__list { display: flex; flex-direction: column; gap: 0.75rem; }
    .cat-info__list-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; color: var(--muted-fg); }
    .cat-info__list-item svg { color: var(--primary); flex-shrink: 0; }

    .cat-article { padding: 5rem 0; }
    .cat-faq { background: oklch(0.18 0.005 250 / 0.2); padding: 5rem 0; }


    /* ── Hero ── */
    .cat-hero {
      position: relative;
      padding: 8rem 0 5rem;
      overflow: hidden;
    }
    .cat-hero__bg {
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, var(--bg), var(--bg), oklch(0.18 0.005 250 / 0.3));
    }
    .cat-hero__glow-r {
      position: absolute;
      right: -5rem;
      top: 25%;
      width: 25rem;
      height: 25rem;
      background: oklch(0.75 0.15 85 / 0.1);
      border-radius: 50%;
      filter: blur(150px);
    }
    .cat-hero__glow-l {
      position: absolute;
      left: -5rem;
      bottom: 0;
      width: 18rem;
      height: 18rem;
      background: oklch(0.18 0.005 250 / 0.3);
      border-radius: 50%;
      filter: blur(100px);
    }
    .cat-hero .container,
    .cat-info .container,
    .cat-faq .container,
    .cat-article .container { position: relative; z-index: 10; }

    .cat-hero__grid {
      display: grid;
      gap: 3rem;
      align-items: center;
    }
    @media (min-width: 1024px) { .cat-hero__grid { grid-template-columns: 1fr 1fr; } }

    .cat-breadcrumb {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      color: var(--muted-fg);
      font-size: 0.875rem;
      margin-bottom: 2rem;
      transition: color 0.2s;
    }
    .cat-breadcrumb:hover { color: var(--primary); }
    .cat-breadcrumb__link { color: var(--muted-fg); text-decoration: none; transition: color 0.2s; }
    .cat-breadcrumb__link:hover { color: var(--primary); }
    .cat-breadcrumb__sep { color: var(--border); margin: 0 0.25rem; }
    .cat-breadcrumb__current { color: var(--fg); }

    .cat-hero__heading {
      font-size: clamp(2.5rem, 5vw, 3.75rem);
      font-weight: 700;
      line-height: 1.1;
      letter-spacing: -0.02em;
      margin: 1.5rem 0;
    }
    .cat-hero__desc {
      font-size: 1.25rem;
      color: var(--muted-fg);
      line-height: 1.7;
      margin-bottom: 2rem;
    }
    .cat-hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }
    .cat-hero__card-wrap { display: flex; justify-content: flex-end; }

    .cat-features { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2rem; }
    .cat-feature { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; color: var(--muted-fg); }
    .cat-feature svg { color: var(--primary); }

    /* ── Price card ── */
    .cat-price-card {
      width: 100%;
      max-width: 28rem;
      padding: 2rem;
      border-radius: 1rem;
      background: var(--card);
      border: 1px solid var(--border);
      position: relative;
      overflow: hidden;
    }
    .cat-price-card::before {
      content: '';
      position: absolute;
      top: 0; right: 0;
      width: 8rem; height: 8rem;
      background: oklch(0.75 0.15 85 / 0.1);
      border-radius: 50%;
      filter: blur(3rem);
    }
    .cat-price-letter {
      width: 5rem; height: 5rem;
      border-radius: 0.75rem;
      background: oklch(0.75 0.15 85 / 0.2);
      border: 1px solid oklch(0.75 0.15 85 / 0.3);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2.5rem;
      font-weight: 700;
      color: var(--primary);
      margin-bottom: 1.5rem;
    }
    .cat-price__title {
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--fg);
      margin-bottom: 0.25rem;
    }
    .cat-price__sub { color: var(--muted-fg); margin-bottom: 1.5rem; }
    .cat-price__block { margin-bottom: 1.5rem; }
    .cat-price__val {
      font-size: 2.5rem;
      font-weight: 700;
      color: var(--fg);
      display: flex;
      align-items: baseline;
      gap: 0.5rem;
    }
    .cat-price__unit { font-size: 1.125rem; color: var(--muted-fg); }
    .cat-price__old { font-size: 0.875rem; color: var(--muted-fg); text-decoration: line-through; }
    .cat-price-detail { display: flex; align-items: center; gap: 0.75rem; font-size: 0.875rem; color: var(--muted-fg); margin-bottom: 0.75rem; }
    .cat-price-detail-icon {
      width: 2rem; height: 2rem;
      border-radius: 0.5rem;
      background: var(--secondary);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--primary);
      flex-shrink: 0;
    }
    .cat-price__btn { height: 3rem; }

    /* ── cat-price standalone section (PHP category page) ── */
    .cat-price { padding: 3rem 0; background: oklch(0.14 0.008 250 / 0.8); border-top: 1px solid oklch(1 0 0 / 0.05); border-bottom: 1px solid oklch(1 0 0 / 0.05); }
    .cat-price__inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
    .cat-price__icon-wrap { display: flex; align-items: center; gap: 1rem; }
    .cat-price__icon { width: 4rem; height: 4rem; border-radius: 1rem; background: var(--secondary); display: flex; align-items: center; justify-content: center; color: var(--primary); }
    .cat-price__label { font-size: 0.875rem; color: var(--muted-fg); margin-bottom: 0.25rem; }
    .cat-price__current { font-size: 2.25rem; font-weight: 800; color: var(--fg); }
    .cat-price__note { font-size: 0.875rem; color: var(--muted-fg); margin-top: 0.25rem; display: flex; align-items: center; gap: 0.375rem; }

    /* ── Info section ── */
    .cat-info { background: oklch(0.18 0.005 250 / 0.2); position: relative; overflow: hidden; padding: 5rem 0; }
    .cat-info__grid {
      display: grid;
      gap: 2rem;
    }
    @media (min-width: 1024px) { .cat-info__grid { grid-template-columns: 1fr 1fr 1fr; } }
    .cat-info__heading { font-size: 1.5rem; font-weight: 700; color: var(--fg); margin-bottom: 1rem; }
    .cat-info__body { color: var(--muted-fg); line-height: 1.7; }
    .cat-info__card {
      padding: 1.5rem;
      border-radius: 0.75rem;
      background: var(--card);
      border: 1px solid var(--border);
    }
    .cat-info__card-icon {
      width: 2.5rem; height: 2.5rem;
      border-radius: 0.5rem;
      background: oklch(0.75 0.15 85 / 0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--primary);
      margin-bottom: 1rem;
    }
    .cat-info__card-title { font-size: 1.125rem; font-weight: 600; color: var(--fg); margin-bottom: 1rem; }
    .cat-info__list { display: flex; flex-direction: column; gap: 0.75rem; }
    .cat-info__list-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; color: var(--muted-fg); }
    .cat-info__list-item svg { color: var(--primary); flex-shrink: 0; }

    /* ── SEO Article ── */
    .cat-article { padding: 5rem 0; }
    .cat-article__title { text-align: left; margin-bottom: 1.5rem; }
    .cat-article__inner { max-width: 52rem; }
    .cat-article__lead {
      font-size: 1.0625rem;
      color: var(--muted-fg);
      line-height: 1.75;
      margin-bottom: 2.5rem;
    }
    .cat-article__section { margin-bottom: 2.25rem; }
    .cat-article__section-title {
      font-size: 1.1875rem;
      font-weight: 600;
      color: var(--fg);
      margin-bottom: 0.875rem;
    }
    .cat-article__text {
      font-size: 0.9375rem;
      color: var(--muted-fg);
      line-height: 1.75;
      margin-bottom: 0.875rem;
    }
    .cat-article__list {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
      list-style: none;
      padding: 0;
    }
    .cat-article__list li {
      display: flex;
      align-items: flex-start;
      gap: 0.625rem;
      font-size: 0.9375rem;
      color: var(--muted-fg);
      line-height: 1.6;
    }
    .cat-article__list li::before {
      content: '';
      width: 6px; height: 6px;
      border-radius: 50%;
      background: var(--primary);
      margin-top: 0.55rem;
      flex-shrink: 0;
    }
    .cat-article__note {
      margin-top: 1.5rem;
      padding: 1rem 1.25rem;
      border-radius: 0.625rem;
      border-left: 3px solid var(--primary);
      background: oklch(0.75 0.15 85 / 0.07);
      font-size: 0.9375rem;
      color: var(--muted-fg);
      line-height: 1.65;
    }

    /* ── FAQ ── */
    .cat-faq { background: oklch(0.18 0.005 250 / 0.2); padding: 5rem 0; }
    .cat-faq__list { max-width: 48rem; margin: 0 auto; }
    .prose h2 { font-size: 1.5rem; font-weight: 700; color: var(--fg); margin: 3rem 0 1rem; }
    .prose p { color: var(--muted-fg); line-height: 1.8; margin-bottom: 1rem; }
    .prose ul { margin-bottom: 1rem; padding-left: 0; }
    .prose ul li {
      display: flex;
      align-items: flex-start;
      gap: 0.75rem;
      color: var(--muted-fg);
      margin-bottom: 0.5rem;
      line-height: 1.6;
    }
    .prose ul li::before {
      content: '•';
      color: var(--primary);
      font-size: 1.25rem;
      line-height: 1;
      margin-top: 0.2rem;
      flex-shrink: 0;
    }
    .prose a { color: var(--primary); }
    .prose a:hover { text-decoration: underline; }
    .info-block {
      padding: 1.5rem;
      border-radius: 0.75rem;
      background: oklch(0.18 0.005 250 / 0.3);
      border: 1px solid var(--border);
      margin-bottom: 1rem;
    }
    .info-block h3 { font-weight: 600; color: var(--fg); margin-bottom: 0.5rem; }
    .info-block p { color: var(--muted-fg); font-size: 0.875rem; margin: 0; }
    .contact-box {
      padding: 1.5rem;
      border-radius: 0.75rem;
      background: oklch(0.18 0.005 250 / 0.3);
      border: 1px solid var(--border);
    }
    .contact-box p { color: var(--muted-fg); margin: 0.25rem 0; }

    .page-hero { position: relative; padding: 8rem 0 4rem; overflow: hidden; }
    .page-hero__bg { position: absolute; inset: 0; background: linear-gradient(to bottom, oklch(0.18 0.005 250 / 0.2), var(--bg)); }
    .page-hero .container { position: relative; z-index: 10; }
    .page-hero__title { font-size: clamp(2rem,5vw,3rem); font-weight: 700; color: var(--fg); margin-bottom: 1rem; }
    .page-hero__date { color: var(--muted-fg); }
    .prose-section { padding: 2rem 0 5rem; }
    .info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
    @media (max-width: 639px) { .info-grid { grid-template-columns: 1fr; } }
    .contact-box__label { color: var(--fg); }
    .contact-box__row { margin-top: 0.5rem; }

        .page-hero {
      position: relative;
      padding: 8rem 0 4rem;
      overflow: hidden;
    }
    .page-hero__bg {
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom, oklch(0.18 0.005 250 / 0.3), var(--bg));
    }
    .page-hero__glow {
      position: absolute;
      right: 0;
      top: 0;
      width: 31rem;
      height: 31rem;
      background: oklch(0.75 0.15 85 / 0.05);
      border-radius: 50%;
      filter: blur(150px);
    }
    .contacts-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.5rem;
      margin-bottom: 3rem;
    }
    @media (min-width: 640px) { .contacts-grid { grid-template-columns: 1fr 1fr; } }
    @media (min-width: 1024px) { .contacts-grid { grid-template-columns: repeat(4, 1fr); } }
    .contact-card {
      display: block;
      padding: 1.5rem;
      border-radius: 1rem;
      background: var(--card);
      border: 1px solid var(--border);
      transition: border-color 0.2s;
      text-decoration: none;
    }
    .contact-card:hover { border-color: oklch(0.75 0.15 85 / 0.3); }
    .contact-card__icon {
      width: 3rem;
      height: 3rem;
      border-radius: 0.75rem;
      background: oklch(0.75 0.15 85 / 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--primary);
      margin-bottom: 1rem;
      transition: background 0.2s;
    }
    .contact-card:hover .contact-card__icon { background: oklch(0.75 0.15 85 / 0.2); }
    .contact-card__label { font-size: 0.875rem; color: var(--muted-fg); margin-bottom: 0.25rem; }
    .contact-card__value { font-size: 1.125rem; font-weight: 600; color: var(--fg); margin-bottom: 0.5rem; }
    .contact-card__desc { font-size: 0.875rem; color: var(--muted-fg); }
    .contacts-layout {
      display: grid;
      gap: 3rem;
      align-items: start;
    }
    @media (min-width: 1024px) { .contacts-layout { grid-template-columns: 1fr 1fr; } }
    .map-wrap {
      border-radius: 1rem;
      overflow: hidden;
      border: 1px solid var(--border);
      position: relative;
    }
    .map-placeholder {
      aspect-ratio: 4/3;
      background: var(--secondary);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 1rem;
      color: var(--muted-fg);
    }
    .map-overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 1rem;
      background: linear-gradient(to top, oklch(0.08 0.005 250 / 0.95), transparent);
      display: flex;
      align-items: center;
      gap: 0.75rem;
      color: var(--fg);
    }
    .contacts-form { display: flex; flex-direction: column; gap: 1.5rem; }
    .contacts-form__row {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1rem;
    }
    @media (min-width: 640px) { .contacts-form__row { grid-template-columns: 1fr 1fr; } }
    .contacts-form__note {
      margin-top: 1rem;
      padding: 1.5rem;
      border-radius: 1rem;
      background: var(--card);
      border: 1px solid var(--border);
    }
    .contacts-form__note-title { font-weight: 600; color: var(--fg); margin-bottom: 0.5rem; }
    .contacts-form__note-text { font-size: 0.875rem; color: var(--muted-fg); line-height: 1.6; }
    .checkbox-wrap { display: flex; align-items: flex-start; gap: 0.75rem; }
    .checkbox-wrap input[type="checkbox"] {
      width: 1rem;
      height: 1rem;
      margin-top: 0.2rem;
      accent-color: var(--primary);
      flex-shrink: 0;
    }
    .checkbox-wrap label { font-size: 0.875rem; color: var(--muted-fg); }
    .checkbox-wrap a { color: var(--primary); }

    .page-hero .container { position: relative; z-index: 10; }
    .page-hero__title { font-size: clamp(2rem,5vw,3rem); font-weight: 700; color: var(--fg); margin-bottom: 1rem; }
    .page-hero__desc { font-size: 1.125rem; color: var(--muted-fg); max-width: 40rem; line-height: 1.7; }
    .contacts-section { padding: 3rem 0; }
    .contacts-section--bottom { padding: 0 0 5rem; }
    .contact-card--info { cursor: default; }
    .section-title { font-size: 1.5rem; font-weight: 700; color: var(--fg); margin-bottom: 1.5rem; }
    .map-placeholder__icon { color: var(--muted-fg); opacity: 0.4; }
    .map-placeholder__note { font-size: 0.875rem; }
    .map-overlay__pin { color: var(--primary); flex-shrink: 0; }
    .map-overlay__title { font-weight: 500; }
    .map-overlay__sub { font-size: 0.875rem; color: var(--muted-fg); }
    .form-label { display: block; margin-bottom: 0.5rem; font-size: 0.875rem; color: var(--fg); }
    .form-textarea--tall { min-height: 7rem; }
    .contacts-success {
      display: none;
      margin-top: 1.5rem;
      padding: 1.5rem;
      border-radius: 1rem;
      background: rgb(34 197 94 / 0.1);
      border: 1px solid rgb(34 197 94 / 0.2);
      color: #22c55e;
      font-weight: 600;
    }

/* ========================================
   FIXED CONTACT WIDGET
======================================== */
.contact-widget {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 1000;
  pointer-events: none;
}
.contact-widget__stack,
.contact-widget > a {
  pointer-events: auto;
}
.contact-widget__btn {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0 1.125rem;
  height: 3rem;
  border-radius: 3rem;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 4px 20px oklch(0 0 0 / 0.45);
  transition: transform 0.2s, box-shadow 0.2s;
}
.contact-widget__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px oklch(0 0 0 / 0.55);
}
.contact-widget__btn--tg {
  background: #29a7e0;
  color: #fff;
}
.contact-widget__btn--wa {
  background: #25d366;
  color: #fff;
}
.contact-widget__btn--phone {
  background: var(--primary);
  color: oklch(0.15 0.01 85);
}
.contact-widget__btn--vk {
  background: #0077ff;
  color: #fff;
}
.contact-widget__btn--max {
  background: #7c3aed;
  color: #fff;
}
.contact-widget__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
@media (max-width: 479px) {
  .contact-widget { bottom: 1rem; right: 1rem; }
  .contact-widget__label { display: none; }
  .contact-widget__btn { width: 3rem; height: 3rem; padding: 0; justify-content: center; }
  .lh-chip--widget .lh-chip__toggle,
  .contact-widget .contact-widget__btn--vk {
    width: 3rem;
    height: 3rem;
  }
}

/* Monitor chat — в едином стеке contact-widget */
.lh-chip--widget.lh-chip--chat .lh-chip__toggle {
  background: var(--primary);
  color: var(--primary-fg);
  border: 1px solid oklch(0.75 0.15 85 / 0.45);
  box-shadow: 0 0 40px -10px oklch(0.75 0.15 85 / 0.35);
}
.lh-chip--widget.lh-chip--chat .lh-chip__toggle:hover {
  background: oklch(0.70 0.15 85);
  box-shadow: 0 0 48px -8px oklch(0.75 0.15 85 / 0.5);
}
.lh-chip--widget.lh-chip--chat.lh-chip--open .lh-chip__toggle {
  box-shadow: 0 0 0 3px oklch(0.75 0.15 85 / 0.35), 0 0 40px -10px oklch(0.75 0.15 85 / 0.35);
}
.lh-chip--widget.lh-chip--chat {
  position: relative;
}
.lh-chip--widget.lh-chip--chat.has-unread .lh-chip__toggle {
  animation: monitor-chat-pulse 1.6s ease-in-out infinite;
  box-shadow:
    0 0 0 3px oklch(0.75 0.15 85 / 0.45),
    0 0 32px oklch(0.75 0.15 85 / 0.4);
}
.lh-chip--widget.lh-chip--chat.has-unread.lh-chip--open .lh-chip__toggle {
  animation: none;
}
.monitor-chat-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: #ef4444;
  color: #fff;
  font-family: Inter, system-ui, sans-serif;
  font-size: 11px;
  font-weight: 700;
  line-height: 18px;
  text-align: center;
  box-shadow: 0 2px 10px oklch(0 0 0 / 0.45);
  pointer-events: none;
  z-index: 2;
}
.monitor-chat-badge[hidden] {
  display: none;
}
@keyframes monitor-chat-pulse {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-2px); }
}
.monitor-chat-msg--flash {
  animation: monitor-chat-msg-flash 2.2s ease;
}
@keyframes monitor-chat-msg-flash {
  0% { box-shadow: 0 0 0 0 oklch(0.75 0.15 85 / 0.55); }
  35% { box-shadow: 0 0 0 4px oklch(0.75 0.15 85 / 0.35); }
  100% { box-shadow: none; }
}
.contact-widget .monitor-chat-panel {
  display: none;
  position: absolute;
  right: calc(100% + 0.75rem);
  bottom: 0;
  width: min(380px, calc(100vw - 2rem));
  height: min(460px, calc(100vh - 8rem));
  border-radius: 14px;
  overflow: hidden;
  flex-direction: column;
  background: oklch(0.12 0.005 250 / 0.96);
  border: 1px solid oklch(0.25 0.005 250 / 0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 24px 64px oklch(0 0 0 / 0.45), 0 0 0 1px oklch(1 0 0 / 0.04) inset;
  font-family: Inter, system-ui, sans-serif;
  font-size: 14px;
  line-height: 1.45;
  color: var(--fg, oklch(0.95 0 0));
  pointer-events: auto;
}
.contact-widget.is-chat-open .monitor-chat-panel {
  display: flex;
  animation: monitor-chat-in 0.22s ease;
}
@keyframes monitor-chat-in {
  from { opacity: 0; transform: translateX(8px) scale(0.98); }
  to { opacity: 1; transform: none; }
}
#monitor-chat-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  padding: 14px 14px 12px;
  border-bottom: 1px solid var(--border, oklch(0.22 0.005 250));
  background: linear-gradient(180deg, oklch(0.16 0.01 85 / 0.35) 0%, transparent 100%);
}
#monitor-chat-head-main { min-width: 0; }
#monitor-chat-title {
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}
#monitor-chat-subtitle {
  margin: 4px 0 0;
  font-size: 0.75rem;
  color: var(--muted-fg, oklch(0.55 0 0));
}
#monitor-chat-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: calc(var(--radius, 0.375rem) + 2px);
  border: 1px solid var(--border, oklch(0.22 0.005 250));
  background: var(--secondary, oklch(0.18 0.005 250));
  color: var(--muted-fg, oklch(0.55 0 0));
  cursor: pointer;
  flex-shrink: 0;
  transition: color 0.15s, background 0.15s, border-color 0.15s;
}
#monitor-chat-close:hover {
  color: var(--fg, oklch(0.95 0 0));
  border-color: oklch(0.75 0.15 85 / 0.35);
  background: oklch(0.75 0.15 85 / 0.08);
}
#monitor-chat-msgs {
  flex: 1;
  overflow: auto;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: linear-gradient(180deg, oklch(0.10 0.005 250) 0%, oklch(0.08 0.005 250) 100%);
}
#monitor-chat-msgs::-webkit-scrollbar { width: 4px; }
#monitor-chat-msgs::-webkit-scrollbar-thumb {
  background: oklch(0.75 0.15 85 / 0.35);
  border-radius: 999px;
}
.monitor-chat-msg {
  max-width: 88%;
  padding: 9px 12px;
  border-radius: 12px;
  font-size: 0.8125rem;
  white-space: pre-wrap;
  word-break: break-word;
}
.monitor-chat-msg--visitor {
  align-self: flex-end;
  background: var(--primary, oklch(0.75 0.15 85));
  color: var(--primary-fg, oklch(0.10 0 0));
  border-bottom-right-radius: 4px;
  box-shadow: 0 8px 24px oklch(0.75 0.15 85 / 0.18);
}
.monitor-chat-msg--admin {
  align-self: flex-start;
  background: var(--secondary, oklch(0.18 0.005 250));
  color: var(--fg, oklch(0.95 0 0));
  border: 1px solid var(--border, oklch(0.22 0.005 250));
  border-bottom-left-radius: 4px;
}
.monitor-chat-msg--admin::before {
  content: "Поддержка";
  display: block;
  margin-bottom: 4px;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--primary, oklch(0.75 0.15 85));
}
.monitor-chat-empty {
  margin: auto;
  text-align: center;
  font-size: 0.8125rem;
  color: var(--muted-fg, oklch(0.55 0 0));
  padding: 0 12px;
}
#monitor-chat-form {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  padding: 12px;
  border-top: 1px solid var(--border, oklch(0.22 0.005 250));
  background: var(--card, oklch(0.12 0.005 250));
}
#monitor-chat-input {
  flex: 1;
  resize: none;
  border: 1px solid var(--border, oklch(0.22 0.005 250));
  border-radius: calc(var(--radius, 0.375rem) + 2px);
  padding: 10px 12px;
  font: inherit;
  font-size: 0.8125rem;
  line-height: 1.4;
  min-height: 42px;
  max-height: 108px;
  background: var(--input, oklch(0.15 0.005 250));
  color: var(--fg, oklch(0.95 0 0));
  transition: border-color 0.15s, box-shadow 0.15s;
}
#monitor-chat-input::placeholder { color: var(--muted-fg, oklch(0.55 0 0)); }
#monitor-chat-input:focus {
  outline: none;
  border-color: oklch(0.75 0.15 85 / 0.55);
  box-shadow: 0 0 0 3px oklch(0.75 0.15 85 / 0.12);
}
#monitor-chat-send {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--primary, oklch(0.75 0.15 85));
  border-radius: calc(var(--radius, 0.375rem) + 2px);
  background: var(--primary, oklch(0.75 0.15 85));
  color: var(--primary-fg, oklch(0.10 0 0));
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.15s, transform 0.15s;
}
#monitor-chat-send:hover { background: oklch(0.70 0.15 85); }
#monitor-chat-send:active { transform: scale(0.96); }
@media (max-width: 639px) {
  .contact-widget .monitor-chat-panel {
    right: 0;
    bottom: calc(100% + 0.65rem);
    width: min(380px, calc(100vw - 2rem));
    height: min(70vh, 520px);
    animation-name: monitor-chat-in-mobile;
  }
  @keyframes monitor-chat-in-mobile {
    from { opacity: 0; transform: translateY(8px) scale(0.98); }
    to { opacity: 1; transform: none; }
  }
}
.monitor-chat-fallback {
  position: fixed;
  right: 1.75rem;
  bottom: 1.75rem;
  z-index: 1000;
  font-family: Inter, system-ui, sans-serif;
}
.monitor-chat-fallback .monitor-chat-panel {
  display: none;
  position: absolute;
  right: 0;
  bottom: calc(100% + 12px);
  width: min(380px, calc(100vw - 2rem));
  height: min(460px, calc(100vh - 8rem));
  border-radius: 14px;
  overflow: hidden;
  flex-direction: column;
  background: oklch(0.12 0.005 250 / 0.96);
  border: 1px solid oklch(0.25 0.005 250 / 0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 24px 64px oklch(0 0 0 / 0.45);
  color: var(--fg, oklch(0.95 0 0));
}
.monitor-chat-fallback.is-chat-open .monitor-chat-panel { display: flex; }

/* Push-уведомления — модалка на весь экран (вне виджета чата) */
.monitor-chat-push-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2147483647;
  padding: 16px;
  box-sizing: border-box;
}
.monitor-chat-push-modal__box {
  background: #1a1d24;
  border: 1px solid #3a3d4a;
  border-radius: 14px;
  padding: 24px 20px 20px;
  width: 100%;
  max-width: 320px;
  text-align: center;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.6);
}
.monitor-chat-push-modal__text {
  font-size: 15px;
  line-height: 1.55;
  color: #e8e8e8;
  margin: 0 0 20px;
  font-family: Inter, system-ui, sans-serif;
}
.monitor-chat-push-modal__ok {
  display: block;
  width: 100%;
  padding: 13px 16px;
  border-radius: 9px;
  border: none;
  background: #c8a84b;
  color: #111;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  font-family: Inter, system-ui, sans-serif;
}
.monitor-chat-push-modal__ok:active { background: #b89535; }

/* Inline chat in lead-form success block */
.contact-form__success-chat,
.modal__success .contact-form__success-chat {
  margin: 1rem 0 1.25rem;
  text-align: left;
}
.modal__success .contact-form__success-chat {
  max-width: 22rem;
  margin-left: auto;
  margin-right: auto;
}
.lh-contacts--after-chat {
  margin-top: 0.5rem;
  margin-bottom: 0;
}
.monitor-chat-inline {
  border: 1px solid var(--border, oklch(0.22 0.005 250));
  border-radius: calc(var(--radius, 0.375rem) + 4px);
  background: var(--card, oklch(0.12 0.005 250));
  overflow: hidden;
  text-align: left;
}
.monitor-chat-inline__head {
  padding: 0.75rem 1rem 0.625rem;
  border-bottom: 1px solid var(--border, oklch(0.22 0.005 250));
  background: oklch(0.14 0.005 250 / 0.6);
}
.monitor-chat-inline__title {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--fg, oklch(0.95 0 0));
}
.monitor-chat-inline__subtitle {
  margin: 0.125rem 0 0;
  font-size: 0.75rem;
  color: var(--muted-fg, oklch(0.55 0 0));
}
.monitor-chat-inline__msgs {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-height: 7.5rem;
  max-height: 12rem;
  overflow-y: auto;
  padding: 0.75rem;
  background: var(--bg, oklch(0.1 0.005 250));
}
.monitor-chat-inline__msgs::-webkit-scrollbar { width: 4px; }
.monitor-chat-inline__msgs::-webkit-scrollbar-thumb {
  background: oklch(0.35 0.01 250);
  border-radius: 4px;
}
.monitor-chat-inline__msgs .monitor-chat-msg {
  max-width: 88%;
}
.monitor-chat-inline__form {
  display: flex;
  align-items: flex-end;
  gap: 0.5rem;
  padding: 0.625rem 0.75rem;
  border-top: 1px solid var(--border, oklch(0.22 0.005 250));
  background: var(--card, oklch(0.12 0.005 250));
}
.monitor-chat-inline__input {
  flex: 1;
  resize: none;
  border: 1px solid var(--border, oklch(0.22 0.005 250));
  border-radius: calc(var(--radius, 0.375rem) + 2px);
  padding: 0.625rem 0.75rem;
  font: inherit;
  font-size: 0.8125rem;
  line-height: 1.4;
  min-height: 2.5rem;
  max-height: 6.75rem;
  color: var(--fg, oklch(0.95 0 0));
  background: var(--bg, oklch(0.1 0.005 250));
}
.monitor-chat-inline__input::placeholder { color: var(--muted-fg, oklch(0.55 0 0)); }
.monitor-chat-inline__input:focus {
  outline: none;
  border-color: var(--primary, oklch(0.75 0.15 85));
}
.monitor-chat-inline__send {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border: none;
  border-radius: calc(var(--radius, 0.375rem) + 2px);
  background: var(--primary, oklch(0.75 0.15 85));
  color: #111;
  cursor: pointer;
}
.monitor-chat-inline__send:hover { background: oklch(0.70 0.15 85); }
.monitor-chat-inline__send:active { transform: scale(0.96); }

/* ============================================================
   404 PAGE
============================================================ */
.not-found {
  position: relative;
  padding: 6rem 0 5rem;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.not-found__glow-l {
  position: absolute;
  left: -10rem;
  top: 10%;
  width: 40rem;
  height: 40rem;
  background: radial-gradient(circle, oklch(0.75 0.15 85 / 0.07), transparent 70%);
  pointer-events: none;
}
.not-found__glow-r {
  position: absolute;
  right: -10rem;
  bottom: 10%;
  width: 30rem;
  height: 30rem;
  background: radial-gradient(circle, oklch(0.65 0.2 270 / 0.07), transparent 70%);
  pointer-events: none;
}
.not-found__inner {
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .not-found__inner { grid-template-columns: 1fr 1.2fr; gap: 5rem; }
}

/* Visual / number */
.not-found__visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.not-found__number {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.not-found__digit {
  font-size: clamp(5rem, 10vw, 8rem);
  font-weight: 900;
  line-height: 1;
  color: var(--primary);
  opacity: 0.9;
  letter-spacing: -0.04em;
}
.not-found__wheel {
  color: var(--primary);
  animation: not-found-spin 8s linear infinite;
  transform-origin: center;
}
.not-found__wheel-arc {
  animation: not-found-dash 2.5s ease-in-out infinite;
}
@keyframes not-found-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes not-found-dash {
  0%   { stroke-dasharray: 60 255; stroke-dashoffset: 0; }
  50%  { stroke-dasharray: 150 165; stroke-dashoffset: -40; }
  100% { stroke-dasharray: 60 255; stroke-dashoffset: -314; }
}

/* Road decoration */
.not-found__road {
  width: 100%;
  max-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.not-found__road-line {
  height: 3px;
  border-radius: 2px;
  background: var(--secondary);
}
.not-found__road-line--dashed {
  background: repeating-linear-gradient(
    to right,
    var(--primary) 0px,
    var(--primary) 20px,
    transparent 20px,
    transparent 36px
  );
  opacity: 0.4;
}

/* Content */
.not-found__heading {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  margin: 0.75rem 0 1rem;
}
.not-found__desc {
  color: var(--muted-fg);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 36rem;
}
.not-found__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

/* Section blocks */
.not-found__section {
  margin-top: 2rem;
}
.not-found__section-label {
  font-size: 0.8125rem;
  color: var(--muted-fg);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.875rem;
}

/* Category cards */
.not-found__cats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
}
.not-found__cat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  padding: 0.75rem 1rem;
  background: var(--secondary);
  border: 1px solid oklch(1 0 0 / 0.07);
  border-radius: 0.75rem;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  min-width: 5.5rem;
}
.not-found__cat-card:hover {
  background: oklch(0.75 0.15 85 / 0.1);
  border-color: oklch(0.75 0.15 85 / 0.3);
  transform: translateY(-2px);
}
.not-found__cat-letter {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}
.not-found__cat-name {
  font-size: 0.6875rem;
  color: var(--muted-fg);
  text-align: center;
  line-height: 1.3;
}
.not-found__cat-price {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--fg);
  margin-top: 0.125rem;
}

/* Service links */
.not-found__services {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.not-found__service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  color: var(--muted-fg);
  text-decoration: none;
  padding: 0.375rem 0.75rem;
  background: var(--secondary);
  border: 1px solid oklch(1 0 0 / 0.07);
  border-radius: 999px;
  transition: color 0.2s, background 0.2s, border-color 0.2s;
}
.not-found__service-link:hover {
  color: var(--primary);
  background: oklch(0.75 0.15 85 / 0.08);
  border-color: oklch(0.75 0.15 85 / 0.25);
}
.not-found__service-link svg { color: var(--primary); flex-shrink: 0; }
/* ============================================================
   SEO TEXT BLOCK (for search engines + accessibility)
============================================================ */
.seo-text {
  padding: 3rem 0 4rem;
  border-top: 1px solid oklch(1 0 0 / 0.06);
}
.seo-text__inner {
  display: grid;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .seo-text__inner { grid-template-columns: repeat(3, 1fr); gap: 3rem; }
}
.seo-text__heading {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 1rem;
}
.seo-text__subheading {
  font-size: 1rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 0.75rem;
}
.seo-text__col p {
  font-size: 0.875rem;
  color: var(--muted-fg);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}
.seo-text__col p:last-child { margin-bottom: 0; }
.seo-text__col p a,
.seo-text__col a { color: var(--primary); text-decoration: underline; text-underline-offset: 2px; }
.seo-text__col a:hover { text-decoration-thickness: 2px; }
.seo-text__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.seo-text__list li {
  font-size: 0.875rem;
  color: var(--muted-fg);
  line-height: 1.5;
}
.seo-text__list a { color: var(--primary); text-decoration: underline; text-underline-offset: 2px; }
.seo-text__list a:hover { text-decoration-thickness: 2px; }
.seo-text__list strong { color: var(--fg); font-weight: 600; }

/* ── Prose — universal styles for raw HTML content (no classes needed) ── */
.prose { color: var(--fg); line-height: 1.75; }
.prose h2 { font-size: clamp(1.375rem, 2.5vw, 1.75rem); font-weight: 700; color: var(--fg); margin: 2rem 0 1rem; line-height: 1.3; }
.prose h3 { font-size: clamp(1.125rem, 2vw, 1.375rem); font-weight: 600; color: var(--fg); margin: 1.75rem 0 0.75rem; line-height: 1.35; }
.prose h4 { font-size: 1rem; font-weight: 600; color: var(--fg); margin: 1.5rem 0 0.5rem; }
.prose p { margin: 0 0 1rem; color: var(--muted-fg); }
.prose p + p { margin-top: 0; }
.prose ul, .prose ol { margin: 0 0 1.25rem 1.25rem; color: var(--muted-fg); display: flex; flex-direction: column; gap: 0.375rem; }
.prose ul { list-style: none; margin-left: 0; }
.prose ul li { padding-left: 1.25rem; position: relative; }
.prose ul li::before { content: '-'; position: absolute; left: 0; color: var(--primary); font-weight: 600; }
.prose ol { list-style: decimal; }
.prose ol li { padding-left: 0.25rem; }
.prose li { line-height: 1.6; }
.prose a { color: var(--primary); text-decoration: none; border-bottom: 1px solid oklch(0.75 0.15 85 / 0.3); transition: border-color 0.2s; }
.prose a:hover { border-color: var(--primary); }
.prose strong, .prose b { color: var(--fg); font-weight: 600; }
.prose em { font-style: italic; color: var(--muted-fg); }
.prose blockquote { border-left: 3px solid var(--primary); padding: 0.75rem 1rem; margin: 1.5rem 0; background: oklch(0.15 0.02 250 / 0.4); border-radius: 0 0.5rem 0.5rem 0; }
.prose blockquote p { color: var(--fg); margin: 0; }
.prose hr { border: none; border-top: 1px solid var(--border); margin: 2rem 0; }
.prose > *:first-child { margin-top: 0; }
.prose > *:last-child { margin-bottom: 0; }

/* ── Toast notification ───────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(1rem);
  z-index: 9999;
  padding: 0.875rem 1.5rem;
  border-radius: 0.75rem;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.4;
  max-width: calc(100vw - 2rem);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.toast--visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.toast--error {
  background: oklch(0.25 0.05 15 / 0.92);
  border: 1px solid oklch(0.55 0.2 15 / 0.5);
  color: oklch(0.9 0.08 15);
  box-shadow: 0 8px 32px oklch(0 0 0 / 0.4);
}
.toast--success {
  background: oklch(0.22 0.06 145 / 0.92);
  border: 1px solid oklch(0.55 0.18 145 / 0.5);
  color: oklch(0.9 0.1 145);
  box-shadow: 0 8px 32px oklch(0 0 0 / 0.4);
}
.toast--info {
  background: oklch(0.2 0.05 250 / 0.92);
  border: 1px solid oklch(0.55 0.18 250 / 0.5);
  color: oklch(0.88 0.08 250);
  box-shadow: 0 8px 32px oklch(0 0 0 / 0.4);
}
