/* ============ RESET & BASE ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --bg: rgb(46, 65, 50);
  --bg-2: rgba(255, 255, 255, 0.04);
  --bg-3: rgba(255, 255, 255, 0.07);
  --fg: #f5f1e8;
  --muted: #8a8d8a;
  --accent: #c5ff3d;
  --accent-2: #e8c87a;
  --accent-glow: rgba(197, 255, 61, 0.35);
  --card: rgba(255, 255, 255, 0.025);
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.18);
}
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  background:
    radial-gradient(circle at 12% 18%, rgba(155, 210, 150, 0.16) 0%, transparent 28%),
    radial-gradient(circle at 86% 14%, rgba(120, 170, 125, 0.14) 0%, transparent 30%),
    radial-gradient(circle at 72% 78%, rgba(95, 145, 100, 0.16) 0%, transparent 32%),
    radial-gradient(circle at 18% 84%, rgba(180, 210, 155, 0.08) 0%, transparent 28%),
    linear-gradient(135deg,
      rgb(38, 54, 41) 0%,
      rgb(46, 65, 50) 35%,
      rgb(55, 77, 59) 68%,
      rgb(40, 57, 44) 100%);
  background-attachment: fixed;
  color: var(--fg);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 0.9 0 0 0 0 0.9 0 0 0 0 0.9 0 0 0 0.04 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 1; opacity: 0.5;
}


body::after {
  content: '';
  position: fixed;
  inset: -20%;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(circle at 25% 35%, rgba(197,255,61,.07), transparent 26%),
    radial-gradient(circle at 75% 65%, rgba(232,200,122,.045), transparent 24%),
    radial-gradient(circle at 50% 50%, rgba(255,255,255,.025), transparent 45%);
  filter: blur(70px);
  animation: bgMove 18s ease-in-out infinite alternate;
}
@keyframes bgMove {
  from { transform: translate(-3%,-2%) scale(1); }
  to { transform: translate(3%,2%) scale(1.08); }
}

/* ============ NAVIGATION ============ */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 40px;
  display: flex; justify-content: space-between; align-items: center;
  background: rgba(35, 51, 39, 0.72);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: padding 0.3s;
}
.nav.scrolled { padding: 12px 40px; background: rgba(35, 51, 39, 0.94); }
.logo {
  font-family: 'Georgia', serif;
  font-size: 22px;
  letter-spacing: 0.18em;
  display: flex; align-items: center; gap: 12px;
  color: var(--fg);
  text-decoration: none;
}
.logo-mark {
  width: 38px; height: 38px;
  background: var(--accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--bg);
  font-weight: 900; font-size: 18px; font-family: sans-serif;
  box-shadow: 0 0 30px var(--accent-glow);
}
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-name { display: block; }
.logo-sub {
  font-family: 'SF Mono', Menlo, monospace;
  font-size: 8.2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 5px;
  text-align: justify;
  text-align-last: justify;
  -moz-text-align-last: justify;
  text-justify: inter-character;
}
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  color: var(--fg); text-decoration: none;
  font-size: 14px; font-weight: 500; letter-spacing: 0.02em;
  position: relative; transition: color 0.3s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -6px; left: 0;
  width: 0; height: 1px; background: var(--accent);
  transition: width 0.3s;
}
.nav-links a:hover { color: var(--accent); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: var(--accent); color: var(--bg);
  padding: 12px 24px; border-radius: 100px;
  text-decoration: none; font-weight: 700; font-size: 14px;
  transition: all 0.3s;
  display: inline-flex; align-items: center; gap: 8px;
}
.nav-cta:hover { background: var(--fg); transform: translateY(-2px); }
.nav-cta::before { content: ''; width: 6px; height: 6px; background: rgba(20, 34, 24, 0.18); border-radius: 50%; }

/* ============ HERO ============ */
.hero {
  min-height: 100vh;
  padding: 140px 40px 80px;
  position: relative; overflow: hidden;
  display: grid; grid-template-columns: 1.05fr 1fr;
  gap: 60px; align-items: center;
  z-index: 2;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero-bg::before {
  content: ''; position: absolute;
  top: -20%; right: -10%;
  width: 70%; height: 90%;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 60%);
  filter: blur(80px);
  animation: drift 18s ease-in-out infinite alternate;
}
.hero-bg::after {
  content: ''; position: absolute;
  bottom: -20%; left: -10%;
  width: 60%; height: 70%;
  background: radial-gradient(circle, rgba(232, 200, 122, 0.18) 0%, transparent 60%);
  filter: blur(80px);
  animation: drift 22s ease-in-out infinite alternate-reverse;
}
@keyframes drift {
  0% { transform: translate(0,0) scale(1); }
  100% { transform: translate(40px,-30px) scale(1.1); }
}
.hero-content { position: relative; z-index: 3; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px;
  background: var(--card);
  border: 1px solid var(--border-strong);
  border-radius: 100px;
  font-size: 13px; color: rgba(255,255,255,.82);
  margin-bottom: 32px;
  backdrop-filter: blur(10px);
}
.hero-badge .dot {
  width: 8px; height: 8px; background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
  box-shadow: 0 0 12px var(--accent);
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}
.hero h1 {
  font-family: 'Georgia', serif;
  font-size: clamp(48px, 7.5vw, 104px);
  line-height: 0.95;
  letter-spacing: -0.035em;
  margin-bottom: 28px;
  font-weight: 400;
}
.hero h1 em { font-style: italic; color: var(--accent); }
.hero p {
  font-size: 19px; color: rgba(255,255,255,.82);
  max-width: 520px; margin-bottom: 44px;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.btn-primary {
  background: var(--accent); color: var(--bg);
  padding: 18px 32px; border-radius: 100px;
  text-decoration: none; font-weight: 700; font-size: 15px;
  display: inline-flex; align-items: center; gap: 10px;
  transition: all 0.3s; border: none; cursor: pointer;
}
.btn-primary:hover { background: var(--fg); transform: translateY(-2px); box-shadow: 0 14px 40px rgba(197, 255, 61, 0.35); }
.btn-primary .arrow { transition: transform 0.3s; }
.btn-primary:hover .arrow { transform: translateX(4px); }
.btn-secondary {
  background: transparent; color: var(--fg);
  padding: 18px 32px;
  border: 1px solid var(--border-strong);
  border-radius: 100px;
  text-decoration: none; font-weight: 500; font-size: 15px;
  transition: all 0.3s;
}
.btn-secondary:hover { border-color: var(--accent); color: var(--accent); }
.hero-stats {
  display: flex; gap: 40px; margin-top: 64px;
  padding-top: 32px; border-top: 1px solid var(--border);
}
.hero-stat .num { font-family: 'Georgia', serif; font-size: 40px; line-height: 1; color: var(--accent); font-style: italic; }
.hero-stat .lbl { color: rgba(255,255,255,.82); font-size: 13px; margin-top: 6px; letter-spacing: 0.05em; }

.hero-visual { position: relative; z-index: 3; display: flex; justify-content: center; align-items: center; min-height: 540px; }
.vacuum-stage { width: 100%; max-width: 600px; aspect-ratio: 1; position: relative; }
.vacuum-stage svg { width: 100%; height: 100%; filter: drop-shadow(0 30px 80px rgba(0,0,0,0.6)); }
.vacuum-stage .vacuum-photo {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 120%; height: 120%;
  object-fit: contain;
  filter: drop-shadow(0 30px 80px rgba(0,0,0,0.6));
  z-index: 1;
}
.bubbles { position: absolute; inset: 0; pointer-events: none; overflow: visible; z-index: 2; }
.bubble {
  position: absolute; border-radius: 50%;
  animation: float-up 10s infinite linear;
  opacity: 0;
  pointer-events: auto;
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  will-change: transform;
}
.bubble-core {
  width: 100%; height: 100%; border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.4), rgba(197, 255, 61, 0.08));
  border: 1px solid rgba(197, 255, 61, 0.2);
}
.bubble.pop { animation-play-state: paused; }
.bubble.pop .bubble-core { animation: bubble-pop 0.36s cubic-bezier(.3,.7,.4,1) forwards; }
@keyframes bubble-pop {
  0%   { transform: scale(1);    opacity: 1; }
  45%  { transform: scale(1.45); opacity: .85; border-color: rgba(197,255,61,.6); }
  100% { transform: scale(2);    opacity: 0; }
}
@keyframes float-up {
  0%   { transform: translate(0, 0) scale(0.35); opacity: 0; }
  10%  { opacity: 0.85; }
  78%  { opacity: 0.85; }
  100% { transform: translate(var(--drift, 15px), var(--rise, -520px)) scale(1.1); opacity: 0; }
}
.vacuum-orbit {
  position: absolute; inset: 0;
  border: 1px dashed rgba(197, 255, 61, 0.15);
  border-radius: 50%;
  animation: rotate 60s linear infinite;
}
.vacuum-orbit::before, .vacuum-orbit::after {
  content: ''; position: absolute;
  width: 8px; height: 8px;
  background: var(--accent); border-radius: 50%;
  box-shadow: 0 0 16px var(--accent);
}
.vacuum-orbit::before { top: -4px; left: 50%; }
.vacuum-orbit::after { bottom: -4px; left: 50%; background: var(--accent-2); box-shadow: 0 0 16px var(--accent-2); }
@keyframes rotate { to { transform: rotate(360deg); } }

/* ============ MARQUEE ============ */
.marquee {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 0; overflow: hidden; white-space: nowrap;
  background: rgba(255,255,255,.035); position: relative; z-index: 2;
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
}
.marquee-track { display: inline-flex; gap: 60px; animation: marquee 35s linear infinite; }
@keyframes marquee { to { transform: translateX(-50%); } }
.marquee-item {
  font-family: 'Georgia', serif; font-size: 30px;
  color: rgba(255,255,255,.82); display: inline-flex;
  align-items: center; gap: 60px; font-style: italic;
}
.marquee-item::after { content: '✦'; color: var(--accent); font-size: 18px; font-style: normal; }

/* ============ SECTIONS ============ */
section{
  padding:130px 40px;
  position:relative;
  z-index:2;
  overflow:hidden;
}
section:nth-of-type(odd){
  background:transparent;
}
section:nth-of-type(even){
  background:rgba(35,51,39,.72);
  backdrop-filter:blur(6px);
  -webkit-backdrop-filter:blur(6px);
}
section::before{
  content:'';
  position:absolute;
  inset:0;
  background:radial-gradient(circle,var(--accent-glow),transparent 60%);
  opacity:.32;
  filter:blur(90px);
  pointer-events:none;
}

.section-label {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: 'SF Mono', Menlo, monospace; font-size: 12px;
  color: var(--accent); text-transform: uppercase;
  letter-spacing: 0.25em; margin-bottom: 28px;
}
.section-label::before { content: ''; width: 36px; height: 1px; background: var(--accent); }
/* Метки-заголовки (Каталог аренды, Тарифы и т.д.) как ссылки в стиле сайта.
   Размер не меняем; на ховере акцентная линия удлиняется и появляется подчёркивание. */
a.section-label { text-decoration: none; cursor: pointer; transition: opacity .25s; }
a.section-label::before { transition: width .3s ease; }
a.section-label:hover::before { width: 56px; }
a.section-label:hover { text-decoration: underline; text-underline-offset: 5px; text-decoration-thickness: 1px; }
.section-title {
  font-family: 'Georgia', serif;
  font-size: clamp(38px, 5.5vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  max-width: 900px;
  margin-bottom: 64px;
  font-weight: 400;
}
.section-title em { font-style: italic; color: var(--accent); }


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

/* FEATURES */
.features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 36px 28px;
  transition: all 0.4s cubic-bezier(.2,.8,.2,1);
  position: relative; overflow: hidden;
}
.feature-card:hover {
  border-color: var(--accent);
  transform: translateY(-6px);
  background: rgba(197, 255, 61, 0.025);
}
.feature-icon {
  width: 56px; height: 56px; border-radius: 16px;
  background: var(--bg-3);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px; color: var(--accent);
  border: 1px solid var(--border);
  transition: all 0.4s;
}
.feature-card:hover .feature-icon { background: var(--accent); color: var(--bg); border-color: var(--accent); transform: rotate(-6deg) scale(1.05); }
.feature-card h3 { font-family: 'Georgia', serif; font-size: 22px; font-weight: 400; margin-bottom: 12px; line-height: 1.2; }
.feature-card p { color: rgba(255,255,255,.82); font-size: 15px; line-height: 1.65; }

/* SPECS */

.specs { background: transparent; }
.specs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.specs-visual {
  aspect-ratio: 1; background: rgba(20, 34, 24, 0.18);
  border-radius: 32px; position: relative; overflow: hidden;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
}
.specs-visual svg { width: 90%; height: 90%; position: relative; z-index: 2; }
.specs-list { list-style: none; }
.specs-list li { display: flex; justify-content: space-between; align-items: baseline; padding: 22px 0; border-bottom: 1px solid var(--border); gap: 20px; }
.specs-list li:first-child { border-top: 1px solid var(--border); }
.specs-list .label { color: rgba(255,255,255,.82); font-size: 15px; }
.specs-list .value { font-family: 'Georgia', serif; font-size: 32px; color: var(--fg); line-height: 1; }
.specs-list .value span { font-size: 13px; color: rgba(255,255,255,.82); font-family: 'SF Mono', Menlo, monospace; margin-left: 6px; }
.specs-cta { margin-top: 36px; }

.kit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.kit-item { background: var(--card); border: 1px solid var(--border); border-radius: 24px; padding: 32px; text-align: center; transition: all 0.3s; }
.kit-item:hover { border-color: var(--accent); transform: translateY(-4px); }
.kit-icon { width: 60px; height: 60px; margin: 0 auto 20px; color: var(--accent); }
.kit-item h4 { font-family: 'Georgia', serif; font-size: 20px; margin-bottom: 8px; font-weight: 400; }
.kit-item p { color: var(--muted); font-size: 14px; }

@media (max-width: 1100px) { .kit-grid { grid-template-columns: 1fr; } }

/* STEPS */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.step {
  position: relative; padding: 36px 28px;
  border: 1px solid var(--border);
  border-radius: 24px; background: var(--card);
  transition: all 0.4s;
}
.step:hover { border-color: var(--accent); background: rgba(197, 255, 61, 0.03); transform: translateY(-4px); }
.step-number { font-family: 'Georgia', serif; font-size: 64px; color: var(--accent); line-height: 1; margin-bottom: 20px; font-style: italic; display: flex; align-items: center; gap: 12px; }
.step-number::after { content: ''; flex: 1; height: 1px; background: linear-gradient(to right, var(--accent), transparent); }
.step h3 { font-size: 19px; font-weight: 600; margin-bottom: 12px; line-height: 1.3; }
.step p { color: rgba(255,255,255,.82); font-size: 14px; line-height: 1.6; }
.step-time { margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--border); font-family: 'SF Mono', Menlo, monospace; font-size: 12px; color: var(--accent); }

/* PRICING */
.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pricing-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 28px; padding: 40px 36px;
  position: relative; transition: all 0.4s;
}
.pricing-card.featured {
  background: linear-gradient(135deg, rgba(197, 255, 61, 0.08), rgba(197, 255, 61, 0.01));
  border-color: var(--accent);
  transform: translateY(-12px);
}
.pricing-card:hover { transform: translateY(-16px); border-color: var(--accent); }
.pricing-card.featured:hover { transform: translateY(-20px); }
.pricing-card .badge {
  position: absolute; top: -14px; left: 36px;
  background: var(--accent); color: var(--bg);
  padding: 7px 16px; border-radius: 100px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
}
.pricing-name { font-family: 'SF Mono', Menlo, monospace; font-size: 12px; color: var(--accent); text-transform: uppercase; letter-spacing: 0.18em; margin-bottom: 20px; }
.pricing-price { font-family: 'Georgia', serif; font-size: 60px; line-height: 1; margin-bottom: 6px; display: flex; align-items: baseline; gap: 6px; }
.pricing-price small { font-size: 18px; color: rgba(255,255,255,.82); font-family: 'SF Mono', Menlo, monospace; }
.pricing-desc { color: rgba(255,255,255,.82); font-size: 14px; margin-bottom: 32px; padding-bottom: 28px; border-bottom: 1px solid var(--border); }
.pricing-features { list-style: none; margin-bottom: 32px; }
.pricing-features li { padding: 11px 0; display: flex; align-items: center; gap: 12px; font-size: 14.5px; }
.pricing-features li::before { content: '✓'; color: var(--accent); font-weight: 700; font-size: 16px; }
.pricing-cta { display: block; text-align: center; padding: 16px; border-radius: 100px; text-decoration: none; font-weight: 600; transition: all 0.3s; font-size: 14px; }
.pricing-card.featured .pricing-cta { background: var(--accent); color: var(--bg); }
.pricing-card.featured .pricing-cta:hover { background: var(--fg); }
.pricing-card:not(.featured) .pricing-cta { background: var(--bg-3); color: var(--fg); border: 1px solid var(--border); }
.pricing-card:not(.featured) .pricing-cta:hover { border-color: var(--accent); color: var(--accent); }

/* GALLERY */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.gallery-item {
  aspect-ratio: 4/5; border-radius: 20px;
  overflow: hidden; position: relative;
  background: var(--bg-2); border: 1px solid var(--border);
  transition: transform 0.4s; cursor: ew-resize;
  user-select: none; -webkit-user-select: none;
}
.gallery-item:hover { transform: translateY(-4px); }
.ba-stage {
  position: absolute; inset: 0;
  display: grid; grid-template-columns: var(--split, 50%) 1fr;
  transition: grid-template-columns 0.05s linear;
}
.ba-layer { position: relative; overflow: hidden; }
.ba-layer svg { width: 100%; height: 100%; display: block; }
.ba-handle {
  position: absolute; top: 0; bottom: 0;
  left: var(--split, 50%);
  width: 3px; background: var(--accent);
  transform: translateX(-1.5px);
  z-index: 5; pointer-events: none;
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
}
.ba-handle::before {
  content: ''; position: absolute;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 44px; height: 44px;
  background: var(--accent); border-radius: 50%;
  box-shadow: 0 4px 20px rgba(197, 255, 61, 0.5);
}
.ba-handle::after {
  content: '⟷'; position: absolute;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  color: var(--bg); font-size: 20px; font-weight: 700;
  z-index: 1;
}
.gallery-label { position: absolute; bottom: 16px; background: rgba(0,0,0,0.7); backdrop-filter: blur(10px); padding: 6px 12px; border-radius: 100px; font-size: 11px; font-family: 'SF Mono', Menlo, monospace; color: white; z-index: 4; letter-spacing: 0.1em; text-transform: uppercase; }
.gallery-label.l-before { left: 16px; }
.gallery-label.l-after { right: 16px; background: rgba(197, 255, 61, 0.95); color: var(--bg); font-weight: 700; }
.gallery-item-name { position: absolute; top: 16px; left: 16px; background: rgba(0,0,0,0.5); backdrop-filter: blur(10px); padding: 6px 12px; border-radius: 100px; font-size: 11px; color: var(--fg); z-index: 4; }

/* TESTIMONIALS */
.testimonials { background: transparent; }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testimonial {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 24px; padding: 36px 32px;
  transition: all 0.4s; display: flex; flex-direction: column;
}
.testimonial:hover { border-color: var(--border-strong); transform: translateY(-4px); background: rgba(255,255,255,0.04); }
.testimonial .stars { color: var(--accent-2); font-size: 14px; margin-bottom: 20px; letter-spacing: 3px; }
.testimonial .quote-mark { font-family: 'Georgia', serif; font-size: 64px; line-height: 0.5; color: var(--accent); opacity: 0.4; margin-bottom: 12px; }
.testimonial p { font-family: 'Georgia', serif; font-size: 17px; line-height: 1.55; margin-bottom: 28px; flex: 1; font-style: italic; }
.testimonial .author { display: flex; align-items: center; gap: 14px; }
.testimonial .avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--accent), var(--accent-2)); display: flex; align-items: center; justify-content: center; color: var(--bg); font-weight: 800; font-size: 16px; }
.testimonial .name { font-weight: 600; font-size: 15px; }
.testimonial .role { color: rgba(255,255,255,.82); font-size: 13px; margin-top: 2px; }

/* FAQ */
.faq-wrap { max-width: 900px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); padding: 28px 0; cursor: pointer; }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-question { display: flex; justify-content: space-between; align-items: center; font-family: 'Georgia', serif; font-size: 22px; gap: 24px; transition: color 0.3s; }
.faq-item:hover .faq-question { color: var(--accent); }
.faq-toggle { width: 38px; height: 38px; border: 1px solid var(--border-strong); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all 0.3s; color: var(--accent); position: relative; }
.faq-toggle::before, .faq-toggle::after { content: ''; position: absolute; background: currentColor; border-radius: 2px; transition: transform 0.3s; }
.faq-toggle::before { width: 12px; height: 2px; }
.faq-toggle::after { width: 2px; height: 12px; }
.faq-item.open .faq-toggle { background: var(--accent); color: var(--bg); border-color: var(--accent); transform: rotate(180deg); }
.faq-item.open .faq-toggle::after { transform: scaleY(0); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.5s ease, padding 0.4s ease; color: rgba(255,255,255,.82); font-size: 16px; line-height: 1.7; }
.faq-item.open .faq-answer { max-height: 400px; padding-top: 20px; }

/* CTA / FORM */
.cta-section { background: transparent; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; top: 30%; left: 50%; transform: translateX(-50%); width: 80%; height: 80%; background: radial-gradient(circle, var(--accent-glow), transparent 60%); filter: blur(100px); pointer-events: none; }
.form-wrapper {
  background: var(--card); border: 1px solid var(--border-strong);
  border-radius: 32px; padding: 56px;
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: 64px; align-items: center;
  position: relative; z-index: 2; backdrop-filter: blur(20px);
}
.form-info h3 { font-family: 'Georgia', serif; font-size: 38px; line-height: 1.05; margin-bottom: 24px; font-weight: 400; letter-spacing: -0.02em; }
.form-info h3 em { color: var(--accent); font-style: italic; }
.form-info p { color: rgba(255,255,255,.82); margin-bottom: 36px; font-size: 16px; }
.contact-list { list-style: none; display: flex; flex-direction: column; gap: 18px; }
.contact-list li { display: flex; align-items: center; gap: 16px; font-size: 15px; }
.contact-list .icon { width: 46px; height: 46px; border-radius: 14px; background: var(--bg-3); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--accent); flex-shrink: 0; }
.contact-list .lbl-small { display: block; font-size: 12px; color: rgba(255,255,255,.82); margin-bottom: 2px; font-family: 'SF Mono', Menlo, monospace; text-transform: uppercase; letter-spacing: 0.1em; }
.contact-list .val { font-weight: 600; color: var(--fg); }
.form-fields { display: flex; flex-direction: column; gap: 16px; }
.form-fields .field { display: flex; flex-direction: column; gap: 8px; }
.form-fields label { font-size: 12px; color: rgba(255,255,255,.82); font-family: 'SF Mono', Menlo, monospace; text-transform: uppercase; letter-spacing: 0.12em; }
.form-fields input, .form-fields textarea, .form-fields select { background: rgba(20, 34, 24, 0.18); border: 1px solid var(--border); border-radius: 12px; padding: 16px; color: var(--fg); font-size: 15px; font-family: inherit; width: 100%; transition: border-color 0.3s, background 0.3s; }
.form-fields input:focus, .form-fields textarea:focus, .form-fields select:focus { outline: none; border-color: var(--accent); background: var(--bg-2); }
.form-fields textarea { resize: vertical; min-height: 90px; }
/* Ячейки формы могут сжиматься — иначе поле даты на iOS распирает строку */
.form-fields .field { min-width: 0; }
/* Единый вид поля "Дата начала" на iOS и ПК: свой значок календаря справа,
   выравнивание значения по левому краю, поле не выходит за рамки соседних */
.form-fields input[type="date"] {
  -webkit-appearance: none;
  appearance: none;
  min-width: 0;
  padding-right: 44px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23f5f1e8' stroke-opacity='0.7' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2'/%3E%3Cline x1='16' y1='2' x2='16' y2='6'/%3E%3Cline x1='8' y1='2' x2='8' y2='6'/%3E%3Cline x1='3' y1='10' x2='21' y2='10'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 18px 18px;
}
.form-fields input[type="date"]::-webkit-date-and-time-value { text-align: left; margin: 0; }
.form-fields input[type="date"]::-webkit-calendar-picker-indicator { opacity: 0; -webkit-appearance: none; }
/* Телефон в блоке "Бронирование" не должен становиться синей ссылкой на iOS */
.contact-list .val a { color: inherit; text-decoration: none; -webkit-text-fill-color: inherit; }
.form-fields .row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-fields button { background: var(--accent); color: var(--bg); border: none; padding: 18px; border-radius: 12px; font-weight: 700; font-size: 15px; cursor: pointer; transition: all 0.3s; margin-top: 8px; display: flex; align-items: center; justify-content: center; gap: 10px; }
.form-fields button:hover { background: var(--fg); transform: translateY(-2px); box-shadow: 0 12px 30px rgba(197, 255, 61, 0.3); }

/* FOOTER */
footer { padding: 80px 40px 40px; border-top: 1px solid var(--border); background: transparent; position: relative; z-index: 2; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 60px; }
.footer-brand h4 { font-family: 'Georgia', serif; font-size: 28px; margin-bottom: 18px; font-weight: 400; letter-spacing: 0.1em; }
.footer-logo { display: inline-flex; flex-direction: column; line-height: 1; }
.footer-name { display: block; }
.footer-sub {
  font-family: 'SF Mono', Menlo, monospace;
  font-size: 10px;
  letter-spacing: normal;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 8px;
  text-align: justify;
  text-align-last: justify;
  -moz-text-align-last: justify;
  text-justify: inter-character;
}
.footer-brand p { color: rgba(255,255,255,.82); font-size: 15px; max-width: 320px; line-height: 1.65; }
.footer-socials { display: flex; gap: 12px; margin-top: 24px; }
.footer-socials a { width: 40px; height: 40px; border-radius: 12px; background: var(--bg-3); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--fg); transition: all 0.3s; }
.footer-socials a:hover { background: var(--accent); color: var(--bg); border-color: var(--accent); }
.footer-col h5 { font-size: 12px; color: rgba(255,255,255,.82); text-transform: uppercase; letter-spacing: 0.18em; margin-bottom: 22px; font-family: 'SF Mono', Menlo, monospace; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col a { color: var(--fg); text-decoration: none; font-size: 15px; transition: color 0.3s; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 40px; border-top: 1px solid var(--border); color: rgba(255,255,255,.82); font-size: 13px; }
.footer-bottom .legal { display: flex; gap: 24px; }
.footer-bottom .legal a { color: rgba(255,255,255,.82); text-decoration: none; transition: color 0.3s; }
.footer-bottom .legal a:hover { color: var(--accent); }


.feature-card,
.step,
.pricing-card,
.testimonial,
.form-wrapper,
.specs-visual {
  background:
    linear-gradient(145deg, rgba(255,255,255,.065), rgba(255,255,255,.025));
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.045),
    0 18px 45px rgba(12,24,15,.14);
}

/* REVEAL ANIMATION */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.9s ease, transform 0.9s cubic-bezier(.2,.8,.2,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* TOAST */
.toast { position: fixed; bottom: 30px; right: 30px; background: var(--accent); color: var(--bg); padding: 18px 28px; border-radius: 14px; font-weight: 700; z-index: 1000; transform: translateY(120px); opacity: 0; transition: all 0.5s cubic-bezier(.2,.8,.2,1); box-shadow: 0 20px 50px rgba(197, 255, 61, 0.4); display: flex; align-items: center; gap: 12px; }
.toast.show { transform: translateY(0); opacity: 1; }
.toast::before { content: '✓'; width: 28px; height: 28px; background: rgba(20, 34, 24, 0.18); color: var(--accent); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 900; }

/* RESPONSIVE */
@media (max-width: 1100px) {
  .hero { grid-template-columns: 1fr; padding: 120px 24px 60px; gap: 40px; }
  .hero-visual { min-height: 400px; }
  .features { grid-template-columns: repeat(2, 1fr); }
  .specs-grid { grid-template-columns: 1fr; gap: 40px; }
  .specs-cta { display: flex; width: fit-content; margin-left: auto; margin-right: auto; }
  .form-wrapper { grid-template-columns: 1fr; padding: 40px; gap: 40px; }
}
@media (max-width: 820px) {
  .nav { padding: 16px 20px; } .nav.scrolled { padding: 12px 20px; }
  section { padding: 80px 20px; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .pricing { grid-template-columns: 1fr; }
  .pricing-card.featured { transform: translateY(0); }
  .gallery { grid-template-columns: 1fr 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 14px; text-align: center; }
  .marquee-item { font-size: 22px; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
}
@media (max-width: 520px) {
  .features, .steps, .gallery { grid-template-columns: 1fr; }
  .form-fields .row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 48px; }
  .form-wrapper { padding: 28px; }
  .nav-cta { padding: 10px 16px; font-size: 13px; }
}

/* ===== HERO С ЛОКАЛЬНЫМ ФОНОМ + АДАПТИВНОЕ МЕНЮ ===== */

.hero {
  min-height: 100vh;
  padding: 140px 40px 80px;
  position: relative;
  overflow: hidden;
  display: block;
  z-index: 2;
  background:
    linear-gradient(
      90deg,
      rgba(18, 22, 19, .76) 0%,
      rgba(18, 22, 19, .58) 32%,
      rgba(18, 22, 19, .18) 58%,
      rgba(18, 22, 19, .02) 100%
    ),
    url("assest/hero.jpg") center center / cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 42%, rgba(0,0,0,.25), transparent 40%),
    linear-gradient(180deg, rgba(0,0,0,.10), transparent 28%, rgba(0,0,0,.20));
  z-index: 0;
}

.hero-bg {
  display: none !important;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 690px;
}

.hero-visual {
  display: flex !important;
}

.hero-stats {
  max-width: 760px;
  padding: 24px 28px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 28px;
  background: rgba(27, 37, 30, .52);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 22px 50px rgba(0,0,0,.18);
}

/* Кнопка мобильного меню */
.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 50%;
  background: rgba(35,51,39,.78);
  color: #fff;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform .3s, opacity .3s;
}

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

.nav.menu-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

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

@media (max-width: 820px) {
  .nav {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
  }

  .nav.scrolled {
    padding: 10px 16px;
  }

  .logo {
    justify-self: start;
    min-width: 0;
    font-size: 18px;
    letter-spacing: .10em;
    gap: 9px;
  }

  .logo-mark {
    width: 36px;
    height: 36px;
    font-size: 16px;
    flex: 0 0 36px;
  }

  .nav-cta {
    justify-self: center;
    position: static;
    padding: 11px 18px;
    font-size: 13px;
    white-space: nowrap;
  }

  .nav-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 14px;
    right: 14px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 18px;
    background: rgba(30,45,34,.97);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    box-shadow: 0 22px 55px rgba(0,0,0,.30);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity .28s, transform .28s, visibility .28s;
  }

  .nav.menu-open .nav-links {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    width: 100%;
    padding: 14px 16px;
    border-radius: 12px;
    font-size: 15px;
  }

  .nav-links a:hover {
    background: rgba(197,255,61,.08);
  }

  .hero {
    min-height: 900px;
    padding: 112px 20px 54px;
    background:
      linear-gradient(
        180deg,
        rgba(18,22,19,.78) 0%,
        rgba(18,22,19,.62) 42%,
        rgba(18,22,19,.28) 68%,
        rgba(18,22,19,.10) 100%
      ),
      url("assets/hero.png") 68% center / cover no-repeat;
  }

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

  .hero h1 {
    font-size: clamp(48px, 12vw, 72px);
  }

  .hero p {
    max-width: 560px;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-top: 48px;
  }

  .hero-stat {
    padding: 0 16px;
    border-right: 1px solid rgba(255,255,255,.16);
  }

  .hero-stat:last-child {
    border-right: 0;
  }
}

@media (max-width: 560px) {
  .nav {
    grid-template-columns: auto 1fr auto;
  }

  .logo {
    font-size: 0;
  }

  .logo-text {
    display: none;
  }

  .logo-mark {
    margin: 0;
  }

  .nav-cta {
    padding: 10px 14px;
    font-size: 12px;
  }

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

  .hero {
    min-height: 860px;
    padding: 104px 16px 40px;
    background:
      linear-gradient(
        180deg,
        rgba(18,22,19,.82) 0%,
        rgba(18,22,19,.66) 44%,
        rgba(18,22,19,.28) 72%,
        rgba(18,22,19,.12) 100%
      ),
      url("assets/hero.png") 70% center / cover no-repeat;
  }

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

  .hero-badge {
    font-size: 11px;
    margin-bottom: 24px;
  }

  .hero p {
    font-size: 16px;
    line-height: 1.55;
    margin-bottom: 30px;
  }

  .hero-actions {
    align-items: stretch;
  }

  .hero-actions a {
    width: 100%;
    justify-content: center;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    padding: 12px 20px;
    margin-top: 34px;
  }

  .hero-stat {
    padding: 14px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.16);
  }

  .hero-stat:last-child {
    border-bottom: 0;
  }
}


/* ===== ВОЗВРАТ ИСХОДНОЙ КОМПОЗИЦИИ HERO И СТАТИСТИКИ ===== */
.hero{
  display:grid;
  grid-template-columns:1.05fr 1fr;
  gap:60px;
  align-items:center;
}

.hero-content{
  position:relative;
  z-index:3;
  max-width:none;
}

/* Исходный стиль блока статистики из 5.html */
.hero-stats{
  display:flex;
  gap:40px;
  margin-top:64px;
  padding:32px 0 0;
  max-width:none;
  border:0;
  border-top:1px solid var(--border);
  border-radius:0;
  background:transparent;
  backdrop-filter:none;
  -webkit-backdrop-filter:none;
  box-shadow:none;
}

.hero-stat{
  padding:0;
  border:0;
}

.hero-stat .num{
  font-family:'Georgia',serif;
  font-size:40px;
  line-height:1;
  color:var(--accent);
  font-style:italic;
}

.hero-stat .lbl{
  margin-top:6px;
  color:rgba(255,255,255,.82);
  font-size:13px;
  letter-spacing:.05em;
}

/* Возвращаем hero-visual */
.hero-visual{
  position:relative;
  z-index:3;
  display:flex !important;
  justify-content:center;
  align-items:center;
  min-height:540px;
}

.vacuum-stage{
  width:100%;
  max-width:600px;
  aspect-ratio:1;
  position:relative;
}

.vacuum-stage svg{
  width:100%;
  height:100%;
  filter:drop-shadow(0 30px 80px rgba(0,0,0,.6));
}

@media(max-width:1100px){
  .hero{
    grid-template-columns:1fr;
    padding:120px 24px 60px;
    gap:40px;
  }

  .hero-visual{
    min-height:400px;
  }
}

@media(max-width:820px){
  .hero-stats{
    display:flex;
    gap:24px;
    flex-wrap:wrap;
    margin-top:48px;
    padding-top:32px;
  }

  .hero-stat{
    padding:0;
    border:0;
  }
}

@media(max-width:560px){
  .hero-stats{
    display:flex;
    flex-direction:column;
    gap:22px;
    margin-top:34px;
    padding:28px 0 0;
    border-top:1px solid var(--border);
  }

  .hero-stat{
    padding:0;
    border:0;
  }

  .hero-visual{
    min-height:330px;
  }
}


/* ============ RENTAL CATALOG ============ */
.rental-catalog-section{
  background:rgba(35,51,39,.72);
}

.rental-catalog-intro{
  max-width:760px;
  margin:-38px 0 48px;
  color:rgba(255,255,255,.82);
  font-size:17px;
  line-height:1.7;
}

.rental-catalog{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}

.rental-card{
  min-height:300px;
  padding:30px;
  display:flex;
  flex-direction:column;
  position:relative;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  border-radius:24px;
  background:
    linear-gradient(145deg,rgba(255,255,255,.07),rgba(255,255,255,.025));
  backdrop-filter:blur(22px);
  -webkit-backdrop-filter:blur(22px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.045),
    0 18px 45px rgba(12,24,15,.14);
  transition:transform .35s,border-color .35s,box-shadow .35s;
}

.rental-card::before{
  content:'';
  position:absolute;
  width:220px;
  height:220px;
  top:-110px;
  right:-90px;
  border-radius:50%;
  background:radial-gradient(circle,var(--accent-glow),transparent 68%);
  opacity:.30;
  pointer-events:none;
}

.rental-card:hover{
  transform:translateY(-7px);
  border-color:rgba(197,255,61,.55);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.07),
    0 28px 58px rgba(8,18,11,.22),
    0 0 28px rgba(197,255,61,.07);
}

.rental-card--featured{
  background:
    linear-gradient(145deg,rgba(197,255,61,.13),rgba(255,255,255,.03));
  border-color:rgba(197,255,61,.42);
}

.rental-card__top{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:16px;
  margin-bottom:26px;
}

.rental-card__category{
  color:rgba(255,255,255,.74);
  font-family:'SF Mono',Menlo,monospace;
  font-size:11px;
  letter-spacing:.14em;
  text-transform:uppercase;
}

.rental-card__price{
  color:var(--accent);
  font-family:'Georgia',serif;
  font-size:29px;
  line-height:1;
  font-style:italic;
  white-space:nowrap;
}

.rental-card h3{
  margin-bottom:14px;
  font-family:'Georgia',serif;
  font-size:25px;
  line-height:1.2;
  font-weight:400;
}

.rental-card p{
  margin-bottom:28px;
  color:rgba(255,255,255,.82);
  font-size:14.5px;
  line-height:1.65;
}

.rental-card a{
  margin-top:auto;
  display:inline-flex;
  align-items:center;
  gap:10px;
  width:max-content;
  color:var(--fg);
  text-decoration:none;
  font-size:14px;
  font-weight:700;
  transition:color .25s;
}

.rental-card a span{
  color:var(--accent);
  transition:transform .25s;
}

.rental-card a:hover{
  color:var(--accent);
}

.rental-card a:hover span{
  transform:translateX(5px);
}

@media(max-width:1100px){
  .rental-catalog{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:700px){
  .rental-catalog{
    grid-template-columns:1fr;
  }

  .rental-catalog-intro{
    margin-top:-28px;
    font-size:16px;
  }

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


/* ============ NEWS ============ */
.news-section{
  background:transparent;
}

.news-intro{
  max-width:760px;
  margin:-38px 0 48px;
  color:rgba(255,255,255,.82);
  font-size:17px;
  line-height:1.7;
}

.news-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}

.news-card{
  display:flex;
  flex-direction:column;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  border-radius:26px;
  background:
    linear-gradient(145deg,rgba(255,255,255,.07),rgba(255,255,255,.025));
  backdrop-filter:blur(22px);
  -webkit-backdrop-filter:blur(22px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.045),
    0 18px 45px rgba(12,24,15,.14);
  transition:transform .35s,border-color .35s,box-shadow .35s;
}

.news-card:hover{
  transform:translateY(-7px);
  border-color:rgba(197,255,61,.52);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.07),
    0 28px 60px rgba(8,18,11,.22),
    0 0 30px rgba(197,255,61,.07);
}

.news-card__visual{
  position:relative;
  aspect-ratio:16/9;
  overflow:hidden;
  background:rgba(20,34,24,.18);
}

.news-card__visual svg{
  width:100%;
  height:100%;
  display:block;
  transition:transform .55s cubic-bezier(.2,.8,.2,1);
}

.news-card:hover .news-card__visual svg{
  transform:scale(1.045);
}

.news-card__tag{
  position:absolute;
  z-index:2;
  left:18px;
  top:18px;
  padding:7px 13px;
  border-radius:999px;
  background:rgba(22,39,28,.80);
  border:1px solid rgba(255,255,255,.15);
  color:var(--accent);
  font-family:'SF Mono',Menlo,monospace;
  font-size:10px;
  letter-spacing:.12em;
  text-transform:uppercase;
  backdrop-filter:blur(12px);
}

.news-card__body{
  display:flex;
  flex-direction:column;
  flex:1;
  padding:28px;
}
/* "Читать далее" прижимаем к низу карточки, чтобы во всех карточках
   ссылка была на одной высоте независимо от длины текста. */
.news-card__body > a{
  margin-top:auto;
  align-self:flex-start;
}

.news-card__meta{
  margin-bottom:14px;
  color:rgba(255,255,255,.60);
  font-family:'SF Mono',Menlo,monospace;
  font-size:11px;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.news-card h3{
  margin-bottom:14px;
  font-family:'Georgia',serif;
  font-size:24px;
  line-height:1.23;
  font-weight:400;
}

.news-card p{
  margin-bottom:24px;
  color:rgba(255,255,255,.82);
  font-size:14.5px;
  line-height:1.65;
}

.news-card a{
  display:inline-flex;
  align-items:center;
  gap:10px;
  color:var(--fg);
  text-decoration:none;
  font-size:14px;
  font-weight:700;
  transition:color .25s;
}

.news-card a span{
  color:var(--accent);
  transition:transform .25s;
}

.news-card a:hover{
  color:var(--accent);
}

.news-card a:hover span{
  transform:translateX(5px);
}

@media(max-width:1000px){
  .news-grid{
    grid-template-columns:1fr 1fr;
  }

  .news-card:last-child{
    grid-column:1/-1;
    max-width:calc(50% - 11px);
  }
}

@media(max-width:700px){
  .news-grid{
    grid-template-columns:1fr;
  }

  .news-card:last-child{
    grid-column:auto;
    max-width:none;
  }

  .news-intro{
    margin-top:-28px;
    font-size:16px;
  }
}


/* ===== КАРТИНКИ В КАТАЛОГЕ ===== */
.rental-card{
  padding:0;
  min-height:0;
}

.rental-card__image{
  position:relative;
  aspect-ratio:16/10;
  overflow:hidden;
  background:rgba(20,34,24,.18);
}

.rental-card__image::after{
  content:'';
  position:absolute;
  inset:0;
  pointer-events:none;
  background:linear-gradient(180deg,transparent 55%,rgba(18,28,21,.42) 100%);
}

.rental-card__image img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
  transition:transform .55s cubic-bezier(.2,.8,.2,1);
}

.rental-card:hover .rental-card__image img{
  transform:scale(1.055);
}

.rental-card__content{
  padding:30px;
  display:flex;
  flex-direction:column;
  flex:1;
}

/* Крупные акцентные заголовки товаров */
.rental-card h3{
  color:var(--accent);
  font-size:31px;
  line-height:1.12;
  font-weight:400;
  margin-bottom:16px;
}

/* ===== КАРТИНКИ В НОВОСТЯХ ===== */
.news-card__visual img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
  transition:transform .55s cubic-bezier(.2,.8,.2,1);
}

.news-card:hover .news-card__visual img{
  transform:scale(1.045);
}

/* Крупные акцентные заголовки новостей */
.news-card h3{
  color:var(--accent);
  font-size:29px;
  line-height:1.18;
  font-weight:400;
}

@media(max-width:700px){
  .rental-card h3{
    font-size:27px;
  }

  .news-card h3{
    font-size:26px;
  }
}



/* ===== ТОЧЕЧНЫЕ ПРАВКИ БЛОКОВ ===== */
.specs-visual{padding:0;}
.specs-visual img{width:100%;height:100%;display:block;object-fit:cover;-webkit-user-drag:none;}
/* Блок "Техника": картинка-ссылка, при наведении подсвечивается так же,
   как карточки в "Каталог аренды" (подъём, акцентная рамка, свечение, зум). */
a.specs-visual{
  text-decoration:none;
  cursor:pointer;
  transition:transform .35s, border-color .35s, box-shadow .35s;
}
a.specs-visual img{
  transition:transform .55s cubic-bezier(.2,.8,.2,1);
}
a.specs-visual:hover{
  transform:translateY(-7px);
  border-color:rgba(197,255,61,.55);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.07),
    0 28px 58px rgba(8,18,11,.22),
    0 0 28px rgba(197,255,61,.07);
}
a.specs-visual:hover img{
  transform:scale(1.055);
}
.pricing-card{display:flex;flex-direction:column;}
.pricing-features{flex:1;}
.pricing-cta{margin-top:auto;}
.step{display:flex;flex-direction:column;}
.step p{flex:1;}
.step-time{margin-top:auto;}
.section-title-link,.rental-card__image-link,.news-card__visual-link,.news-card__title-link{color:inherit;text-decoration:none;}
.section-title-link:hover,.news-card__title-link:hover{color:var(--accent);}
.rental-card__image-link,.news-card__visual-link{display:block;}

/* Заголовки-ссылки должны выглядеть как заголовки версии 15,
   а не как маленькие кнопки-ссылки "Арендовать"/"Читать далее".
   Сбрасываем стили, унаследованные от .rental-card a / .news-card a,
   и возвращаем типографику заголовка (h2/h3), оставляя элемент ссылкой. */
.rental-card__content h3 .section-title-link,
.news-card h3 .news-card__title-link{
  display:inline;
  font:inherit;
  font-weight:inherit;
  letter-spacing:inherit;
  gap:0;
  width:auto;
  margin:0;
  color:inherit;
  text-decoration:none;
  transition:color .25s;
}
.rental-card__content h3 .section-title-link:hover,
.news-card h3 .news-card__title-link:hover{
  color:var(--accent);
}

/* Возвращаем исходный размер изображений каталога */
.rental-card a.rental-card__image-link{
  display:block;
  width:100%;
  max-width:none;
  margin:0;
  padding:0;
  gap:0;
  flex:none;
  align-items:initial;
}

.rental-card a.rental-card__image-link img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.ba-layer img{position:absolute;inset:0;width:100%;height:100%;display:block;object-fit:cover;pointer-events:none;-webkit-user-drag:none;user-select:none;}
.ba-layer:last-child img{right:0;left:auto;}



/* ============ LAYOUT ============ */
.page-container { padding-top: 140px; min-height: 100vh; position: relative; z-index: 2; }
section { padding: 80px 40px; position: relative; z-index: 2; overflow: hidden; }
section:nth-of-type(odd) { background: transparent; }
section:nth-of-type(even) {
  background: rgba(35, 51, 39, .72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle, var(--accent-glow), transparent 60%);
  opacity: .32; filter: blur(90px); pointer-events: none;
}
section > * { position: relative; z-index: 1; }
.section-label { display: inline-flex; align-items: center; gap: 14px; font-family: 'SF Mono', Menlo, monospace; font-size: 12px; color: var(--accent); text-transform: uppercase; letter-spacing: 0.25em; margin-bottom: 28px; }
.section-label::before { content: ''; width: 36px; height: 1px; background: var(--accent); }
.section-title { font-family: 'Georgia', serif; font-size: clamp(38px, 5.5vw, 72px); line-height: 1.02; letter-spacing: -0.025em; max-width: 900px; margin-bottom: 64px; font-weight: 400; }
.section-title em { font-style: italic; color: var(--accent); }
.fade-in { animation: fadeIn 0.8s ease-out forwards; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* ============ CONTACTS STYLES ============ */
.contacts-hero { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: stretch; padding: 60px 40px 120px; }
.contact-info-card { background: var(--card); border: 1px solid var(--border-strong); border-radius: 32px; padding: 48px; backdrop-filter: blur(10px); }
.contact-info-card h3 { font-family: 'Georgia', serif; font-size: 32px; margin-bottom: 32px; font-weight: 400; }
.contact-list { list-style: none; display: flex; flex-direction: column; gap: 24px; margin-bottom: 40px; }
.contact-list li { display: flex; align-items: center; gap: 18px; }
.contact-list .icon { width: 52px; height: 52px; border-radius: 14px; background: var(--bg-3); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--accent); flex-shrink: 0; }
.contact-list .lbl-small { display: block; font-size: 12px; color: var(--muted); margin-bottom: 4px; font-family: 'SF Mono', monospace; text-transform: uppercase; letter-spacing: 0.1em; }
.contact-list .val { font-weight: 600; font-size: 18px; color: var(--fg); text-decoration: none; transition: color 0.3s; }
.contact-list a.val:hover { color: var(--accent); }
.socials-row { display: flex; gap: 12px; }
.socials-row a { width: 48px; height: 48px; border-radius: 14px; background: var(--bg-3); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--fg); transition: all 0.3s; }
.socials-row a:hover { background: var(--accent); color: var(--bg); border-color: var(--accent); transform: translateY(-3px); }

.map-wrapper { background: var(--bg-2); border: 1px solid var(--border); border-radius: 32px; padding: 40px; position: relative; overflow: hidden; display: flex; flex-direction: column; justify-content: center; }
.map-wrapper::before { content: ''; position: absolute; top: -20%; left: 20%; width: 60%; height: 60%; background: radial-gradient(circle, var(--accent-glow), transparent 60%); filter: blur(60px); }
.map-svg { width: 100%; height: 100%; position: relative; z-index: 2; }
.map-legend { display: flex; gap: 24px; margin-top: 24px; flex-wrap: wrap; position: relative; z-index: 2; }
.legend-item { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--muted); }
.legend-dot { width: 10px; height: 10px; border-radius: 50%; }

.form-card { background: var(--card); border: 1px solid var(--border-strong); border-radius: 32px; padding: 48px; margin: 0 40px 120px; max-width: 900px; margin-left: auto; margin-right: auto; backdrop-filter: blur(10px); }
.form-fields { display: flex; flex-direction: column; gap: 20px; }
.form-fields .field { display: flex; flex-direction: column; gap: 8px; }
.form-fields label { font-size: 12px; color: var(--muted); font-family: 'SF Mono', monospace; text-transform: uppercase; letter-spacing: 0.12em; }
.form-fields input, .form-fields textarea { background: rgba(20, 34, 24, 0.18); border: 1px solid var(--border); border-radius: 12px; padding: 16px; color: var(--fg); font-size: 15px; font-family: inherit; width: 100%; transition: border-color 0.3s, background 0.3s; }
.form-fields input:focus, .form-fields textarea:focus { outline: none; border-color: var(--accent); background: var(--bg-2); }
.form-fields textarea { resize: vertical; min-height: 100px; }
.form-fields .row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-fields button { background: var(--accent); color: var(--bg); border: none; padding: 18px; border-radius: 12px; font-weight: 700; font-size: 15px; cursor: pointer; transition: all 0.3s; margin-top: 12px; display: flex; align-items: center; justify-content: center; gap: 10px; }
.form-fields button:hover { background: var(--fg); transform: translateY(-2px); box-shadow: 0 12px 30px rgba(197, 255, 61, 0.3); }


/* ============ TOAST ============ */
.toast { position: fixed; bottom: 30px; right: 30px; background: var(--accent); color: var(--bg); padding: 18px 28px; border-radius: 14px; font-weight: 700; z-index: 1000; transform: translateY(120px); opacity: 0; transition: all 0.5s cubic-bezier(.2,.8,.2,1); box-shadow: 0 20px 50px rgba(197, 255, 61, 0.4); display: flex; align-items: center; gap: 12px; }
.toast.show { transform: translateY(0); opacity: 1; }
.toast::before { content: '✓'; width: 28px; height: 28px; background: var(--bg); color: var(--accent); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 900; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1100px) {
  .contacts-hero { grid-template-columns: 1fr; }
}
@media (max-width: 820px) {
  .nav { padding: 16px 20px; }
  section { padding: 60px 20px; }
  .contacts-hero { padding: 40px 20px 80px; }
  .form-card { margin: 0 20px 80px; padding: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 14px; text-align: center; }
  .form-fields .row { grid-template-columns: 1fr; }
}


/* ============ ABOUT STYLES ============ */
.about-hero { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: center; padding: 60px 40px 120px; }
.about-hero-text p { font-size: 19px; color: var(--muted); max-width: 560px; margin-top: 32px; line-height: 1.7; }
.about-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 0; }
.stat-card { background: var(--card); border: 1px solid var(--border); border-radius: 24px; padding: 36px 28px; transition: all 0.4s; }
.stat-card:hover { border-color: var(--accent); transform: translateY(-6px); background: rgba(197, 255, 61, 0.03); }
.stat-num { font-family: 'Georgia', serif; font-size: 48px; color: var(--accent); font-style: italic; line-height: 1; margin-bottom: 12px; }
.stat-lbl { color: var(--muted); font-size: 14px; }

.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-bottom: 120px; }
.value-card { background: var(--card); border: 1px solid var(--border); border-radius: 24px; padding: 40px 32px; transition: all 0.4s; position: relative; overflow: hidden; }
.value-card::before { content: ''; position: absolute; top: 0; right: 0; width: 150px; height: 150px; background: radial-gradient(circle, var(--accent-glow), transparent 70%); opacity: 0; transition: opacity 0.4s; pointer-events: none; }
.value-card:hover::before { opacity: 0.4; }
.value-card:hover { border-color: var(--accent); transform: translateY(-4px); }
.value-icon { width: 56px; height: 56px; border-radius: 16px; background: var(--bg-3); display: flex; align-items: center; justify-content: center; margin-bottom: 24px; color: var(--accent); border: 1px solid var(--border); }
.value-card h3 { font-family: 'Georgia', serif; font-size: 24px; margin-bottom: 12px; font-weight: 400; }
.value-card p { color: var(--muted); font-size: 15px; line-height: 1.65; }

.timeline { position: relative; max-width: 800px; margin: 0 auto; }
.timeline::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 2px; background: linear-gradient(to bottom, var(--accent), transparent); }
.timeline-item { position: relative; padding-left: 40px; margin-bottom: 48px; }
.timeline-item::before { content: ''; position: absolute; left: -6px; top: 0; width: 14px; height: 14px; background: var(--accent); border-radius: 50%; box-shadow: 0 0 15px var(--accent); }
.timeline-year { font-family: 'Georgia', serif; font-size: 28px; color: var(--accent); font-style: italic; margin-bottom: 8px; }
.timeline-text { font-size: 16px; color: var(--fg); }

.about-visual { position: relative; aspect-ratio: 1; width: 100%; max-width: 500px; margin: 0 auto; }
.about-visual svg { width: 100%; height: 100%; filter: drop-shadow(0 30px 80px rgba(0,0,0,0.6)); }

/* ============ FOOTER ============ */
footer { padding: 80px 40px 40px; border-top: 1px solid var(--border); background: transparent; position: relative; z-index: 2; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 60px; }
.footer-brand h4 { font-family: 'Georgia', serif; font-size: 28px; margin-bottom: 18px; font-weight: 400; letter-spacing: 0.1em; }
.footer-brand p { color: var(--muted); font-size: 15px; max-width: 320px; line-height: 1.65; }
.footer-col h5 { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.18em; margin-bottom: 22px; font-family: 'SF Mono', monospace; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col a { color: var(--fg); text-decoration: none; font-size: 15px; transition: color 0.3s; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 40px; border-top: 1px solid var(--border); color: var(--muted); font-size: 13px; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1100px) {
  .about-hero { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: 1fr; }
}
@media (max-width: 820px) {
  .nav { padding: 16px 20px; }
  section { padding: 60px 20px; }
  .about-hero { padding: 40px 20px 80px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 14px; text-align: center; }
}


.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 120px; }
.feature-card { background: var(--card); border: 1px solid var(--border); border-radius: 24px; padding: 36px 28px; transition: all 0.4s; }
.feature-card:hover { border-color: var(--accent); transform: translateY(-6px); background: rgba(197, 255, 61, 0.03); }

.feature-icon { width: 56px; height: 56px; border-radius: 16px; background: var(--bg-3); display: flex; align-items: center; justify-content: center; margin-bottom: 24px; color: var(--accent); border: 1px solid var(--border); }
.feature-icon img{
  width: 45px; 
  height: 45px;  
}

.feature-card h3 { font-family: 'Georgia', serif; font-size: 22px; font-weight: 400; margin-bottom: 12px; line-height: 1.2; }
.feature-card p { color: var(--muted); font-size: 15px; line-height: 1.65; }
.deep-dive { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; background: var(--bg-2); border: 1px solid var(--border); border-radius: 32px; padding: 60px; margin-bottom: 40px; }
.deep-dive-content h3 { font-family: 'Georgia', serif; font-size: 36px; margin-bottom: 24px; font-weight: 400; }
.deep-dive-content p { color: var(--muted); font-size: 17px; margin-bottom: 24px; }
.deep-dive-content ul { list-style: none; }
.deep-dive-content li { padding: 8px 0; display: flex; align-items: center; gap: 12px; font-size: 16px; }
.deep-dive-content li::before { content: '✓'; color: var(--accent); font-weight: 700; }
.deep-dive-visual { aspect-ratio: 1; background: var(--bg); border-radius: 24px; display: flex; align-items: center; justify-content: center; border: 1px solid var(--border); position: relative; overflow: hidden; }
.deep-dive-visual::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle, var(--accent-glow), transparent 65%); opacity: 0.3; }
.deep-dive-visual svg { width: 60%; height: 60%; position: relative; z-index: 2; }
@media (max-width: 1100px) { .features-grid { grid-template-columns: repeat(2, 1fr); } .deep-dive { grid-template-columns: 1fr; } }
@media (max-width: 820px) { .nav { padding: 16px 20px; } section { padding: 60px 20px; } .deep-dive { padding: 40px; } .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; } .footer-bottom { flex-direction: column; gap: 14px; text-align: center; } }


.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 120px; }
.step-card { background: var(--card); border: 1px solid var(--border); border-radius: 24px; padding: 36px 28px; transition: all 0.4s; }
.step-card:hover { border-color: var(--accent); transform: translateY(-6px); background: rgba(197, 255, 61, 0.03); }
.step-num { font-family: 'Georgia', serif; font-size: 64px; color: var(--accent); line-height: 1; margin-bottom: 20px; font-style: italic; display: flex; align-items: center; gap: 12px; }
.step-num::after { content: ''; flex: 1; height: 1px; background: linear-gradient(to right, var(--accent), transparent); }
.step-card h3 { font-family: 'Georgia', serif; font-size: 22px; margin-bottom: 12px; font-weight: 400; }
.step-card p { color: var(--muted); font-size: 15px; line-height: 1.65; }
.step-time { margin-top: 20px; font-family: 'SF Mono', monospace; font-size: 12px; color: var(--accent); border-top: 1px solid var(--border); padding-top: 16px; }
.prep-section { background: var(--bg-2); border: 1px solid var(--border); border-radius: 32px; padding: 60px; }
.prep-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.prep-list { list-style: none; }
.prep-list li { padding: 16px 0; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 16px; font-size: 17px; }
.prep-list li:last-child { border-bottom: none; }
.prep-list .check { width: 28px; height: 28px; background: var(--accent); color: var(--bg); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 900; flex-shrink: 0; }

@media (max-width: 1100px) { .steps-grid { grid-template-columns: repeat(2, 1fr); } .prep-grid { grid-template-columns: 1fr; } }
@media (max-width: 820px) { .nav { padding: 16px 20px; } section { padding: 60px 20px; } .prep-section { padding: 40px; } .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; } .footer-bottom { flex-direction: column; gap: 14px; text-align: center; } }

/* Для управления через чекбокс */
#menu-toggle {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

/* Анимация бургера при открытом меню */
#menu-toggle:checked ~ .nav .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
#menu-toggle:checked ~ .nav .nav-toggle span:nth-child(2) {
  opacity: 0;
}
#menu-toggle:checked ~ .nav .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Показ меню на мобильных */
@media (max-width: 820px) {
  #menu-toggle:checked ~ .nav .nav-links {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  /* остальные стили из вашего медиа-запроса остаются без изменений */
}

/* ===== АДАПТИВ: карточки по одному в ряд на мобильных ===== */
@media (max-width: 820px) {
  .about-stats,
  .features, .features-grid,
  .steps, .steps-grid { grid-template-columns: 1fr; }
}


/* ==================================================================
   УНИКАЛЬНЫЕ СТИЛИ СТРАНИЦЫ «Тарифы» — только для этой страницы
   ================================================================== */

.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 80px; }
.pricing-card { background: var(--card); border: 1px solid var(--border); border-radius: 28px; padding: 40px 36px; position: relative; transition: all 0.4s; }
.pricing-card.featured { background: linear-gradient(135deg, rgba(197, 255, 61, 0.08), rgba(197, 255, 61, 0.01)); border-color: var(--accent); transform: translateY(-12px); }
.pricing-card:hover { transform: translateY(-16px); border-color: var(--accent); }
.pricing-card.featured:hover { transform: translateY(-20px); }
.badge { position: absolute; top: -14px; left: 36px; background: var(--accent); color: var(--bg); padding: 7px 16px; border-radius: 100px; font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.price-name { font-family: 'SF Mono', monospace; font-size: 12px; color: var(--accent); text-transform: uppercase; letter-spacing: 0.18em; margin-bottom: 20px; }
.price-val { font-family: 'Georgia', serif; font-size: 60px; line-height: 1; margin-bottom: 6px; display: flex; align-items: baseline; gap: 6px; }
.price-val small { font-size: 18px; color: var(--muted); font-family: 'SF Mono', monospace; }
.price-desc { color: var(--muted); font-size: 14px; margin-bottom: 32px; padding-bottom: 28px; border-bottom: 1px solid var(--border); }
.price-features { list-style: none; margin-bottom: 32px; }
.price-features li { padding: 11px 0; display: flex; align-items: center; gap: 12px; font-size: 14.5px; }
.price-features li::before { content: '✓'; color: var(--accent); font-weight: 700; font-size: 16px; }
.price-cta { display: block; text-align: center; padding: 16px; border-radius: 100px; text-decoration: none; font-weight: 600; transition: all 0.3s; font-size: 14px; }
.pricing-card.featured .price-cta { background: var(--accent); color: var(--bg); }
.pricing-card.featured .price-cta:hover { background: var(--fg); }
.pricing-card:not(.featured) .price-cta { background: var(--bg-3); color: var(--fg); border: 1px solid var(--border); }
.pricing-card:not(.featured) .price-cta:hover { border-color: var(--accent); color: var(--accent); }
.addons-table { background: var(--bg-2); border: 1px solid var(--border); border-radius: 32px; padding: 60px; }
.addons-table h3 { font-family: 'Georgia', serif; font-size: 32px; margin-bottom: 32px; font-weight: 400; }
.addon-row { display: grid; grid-template-columns: 1fr auto; padding: 20px 0; border-bottom: 1px solid var(--border); align-items: center; }
.addon-row:last-child { border-bottom: none; }
.addon-name { font-size: 17px; }
.addon-price { font-family: 'Georgia', serif; font-size: 24px; color: var(--accent); font-style: italic; }

@media (max-width: 1100px) { .pricing-grid { grid-template-columns: 1fr; } .pricing-card.featured { transform: translateY(0); } .pricing-card.featured:hover, .pricing-card:hover { transform: translateY(-4px); } }
@media (max-width: 820px) { .addons-table { padding: 40px; } }

/* ==================================================================
   КОНЕЦ УНИКАЛЬНЫХ СТИЛЕЙ
   ================================================================== */


/* ==================================================================
   УНИКАЛЬНЫЕ СТИЛИ СТРАНИЦЫ «Отзывы» — только для этой страницы
   ================================================================== */

.summary-box { background: var(--bg-2); border: 1px solid var(--border); border-radius: 32px; padding: 60px; margin-bottom: 80px; display: grid; grid-template-columns: 1fr 2fr; gap: 60px; align-items: center; }
.rating-score { font-family: 'Georgia', serif; font-size: 120px; line-height: 1; color: var(--accent); font-style: italic; }
.rating-stars { color: var(--accent-2); font-size: 24px; margin-bottom: 8px; }
.rating-count { color: var(--muted); font-size: 16px; }
.rating-bars { display: flex; flex-direction: column; gap: 12px; }
.rating-bar-row { display: grid; grid-template-columns: 30px 1fr 40px; align-items: center; gap: 16px; }
.rating-bar-bg { height: 8px; background: var(--bg-3); border-radius: 4px; overflow: hidden; }
.rating-bar-fill { height: 100%; background: var(--accent); }
.rating-bar-label { font-size: 14px; color: var(--muted); }
.rating-bar-num { font-size: 14px; color: var(--fg); text-align: right; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.review-card { background: var(--card); border: 1px solid var(--border); border-radius: 24px; padding: 36px 32px; transition: all 0.4s; display: flex; flex-direction: column; }
.review-card:hover { border-color: var(--border-strong); transform: translateY(-4px); background: rgba(255,255,255,0.04); }
.review-card .stars { color: var(--accent-2); font-size: 14px; margin-bottom: 20px; letter-spacing: 3px; }
.review-card .quote-mark { font-family: 'Georgia', serif; font-size: 64px; line-height: 0.5; color: var(--accent); opacity: 0.4; margin-bottom: 12px; }
.review-card p { font-family: 'Georgia', serif; font-size: 17px; line-height: 1.55; margin-bottom: 28px; flex: 1; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 14px; }
.review-avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--accent), var(--accent-2)); display: flex; align-items: center; justify-content: center; color: var(--bg); font-weight: 800; font-size: 16px; }
.review-name { font-weight: 600; font-size: 15px; }
.review-role { color: var(--muted); font-size: 13px; margin-top: 2px; }

@media (max-width: 1100px) { .summary-box { grid-template-columns: 1fr; text-align: center; } .reviews-grid { grid-template-columns: 1fr; } }

/* ==================================================================
   КОНЕЦ УНИКАЛЬНЫХ СТИЛЕЙ
   ================================================================== */


/* ============ НОВОСТИ / ABOUT BLOCK (в стиле KÜLTURA) ============ */
.about-block {
  position: relative;
  padding: 100px 0 40px;
  z-index: 2;
}
.about-block .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
.about-block__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 64px;
  align-items: center;
}

/* ---- Изображение ---- */
.about-block__media {
  position: relative;
}
.about-block__media::before {
  content: '';
  position: absolute;
  inset: -12%;
  background: radial-gradient(circle at 35% 50%, var(--accent-glow), transparent 62%);
  opacity: 0.16;
  filter: blur(70px);
  pointer-events: none;
  z-index: -1;
}
.about-block__media-inner {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid var(--border);
  background: var(--card);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 24px 60px rgba(8, 18, 11, 0.35);
}
.about-block__media img {
  display: block;
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(.2, .8, .2, 1);
}
.about-block__media:hover img {
  transform: scale(1.04);
}

/* ---- Текст ---- */
.about-block__label {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
  color: var(--accent);
  font-family: 'SF Mono', Menlo, monospace;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}
.about-block__label::before {
  content: '';
  width: 36px;
  height: 1px;
  background: var(--accent);
}
.about-block__title {
  margin: 0;
  font-family: 'Georgia', serif;
  font-weight: 400;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--fg);
}
.about-block__title span,
.about-block__title em {
  color: var(--accent);
  font-style: italic;
}
.about-block__date {
  margin-top: 18px;
  color: var(--muted);
  font-family: 'SF Mono', Menlo, monospace;
  font-size: 13px;
  letter-spacing: 0.06em;
}
.about-block__story {
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  line-height: 1.7;
}
.about-block__story p {
  margin: 0 0 16px;
}
.about-block__story p:last-child {
  margin-bottom: 0;
}
.about-block__story a {
  color: var(--accent);
  text-decoration: none;
}
.about-block__story a:hover {
  text-decoration: underline;
}

/* ---- Адаптив ---- */
@media (max-width: 820px) {
  .about-block { padding: 60px 0 20px; }
  .about-block .container { padding: 0 20px; }
  .about-block__grid { grid-template-columns: 1fr; gap: 32px; }
  .about-block__media img { height: 320px; }
  .about-block__label { margin-bottom: 16px; }
  .about-block__story { font-size: 15px; line-height: 1.6; margin-top: 22px; }
}
@media (max-width: 430px) {
  .about-block__media img { height: 240px; }
}
/* ============ НОВОСТИ / ABOUT BLOCK (в стиле KÜLTURA) ============ */

/* ========== ПОДРОБНАЯ СТРАНИЦА (УСЛУГИ / НОВОСТИ) — стиль KÜLTURA ========== */
.text {
  max-width: 860px;
  margin: 0 auto;
  padding: 130px 40px 90px;
  position: relative;
  z-index: 2;
}
.text-container {
  line-height: 1.8;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.82);
}

/* Кнопка «Назад» */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 32px;
  color: var(--accent);
  font-family: 'SF Mono', Menlo, monospace;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.25s;
}
.back-link::before {
  content: '←';
  font-size: 15px;
  transition: transform 0.25s;
}
.back-link:hover { color: var(--fg); }
.back-link:hover::before { transform: translateX(-4px); }

/* Дата */
.news-date {
  font-family: 'SF Mono', Menlo, monospace;
  font-size: 13px;
  color: var(--accent);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

/* Заголовки внутри текста */
.text-container h2 {
  margin: 0 0 24px;
  font-family: 'Georgia', serif;
  font-weight: 400;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: var(--fg);
  text-transform: none;
}
.text-container h2 span,
.text-container h2 em { color: var(--accent); font-style: italic; }

.text-container h3 {
  font-family: 'Georgia', serif;
  font-weight: 400;
  font-size: 26px;
  color: var(--fg);
  text-transform: none;
  margin: 40px 0 16px;
  padding-left: 18px;
  border-left: 3px solid var(--accent);
}

/* Абзацы */
.text-container p { margin: 0 0 24px; }
.text-container a { color: var(--accent); text-decoration: none; }
.text-container a:hover { text-decoration: underline; }

/* Списки */
.text-container ul { list-style: none; margin: 0 0 30px; padding-left: 4px; }
.text-container li { position: relative; padding-left: 30px; margin-bottom: 12px; }
.text-container li::before {
  content: '✦';
  position: absolute;
  left: 0;
  top: 1px;
  color: var(--accent);
  font-size: 13px;
}

/* Изображения внутри контента */
.content-img {
  display: block;
  width: 100%;
  border-radius: 20px;
  margin: 40px 0;
  border: 1px solid var(--border);
  box-shadow: 0 24px 60px rgba(8, 18, 11, 0.3);
}

/* Выделение (цитата / важное) */
.important-note {
  background: linear-gradient(135deg, rgba(197, 255, 61, 0.08), rgba(197, 255, 61, 0.02));
  border: 1px solid var(--border-strong);
  border-left: 3px solid var(--accent);
  padding: 28px 32px;
  border-radius: 16px;
  margin: 40px 0;
  position: relative;
}
.important-note p { margin: 0; color: var(--fg); font-style: italic; }

/* Адаптив */
@media (max-width: 1016px) {
  .text { padding: 110px 20px 70px; }
}
@media (max-width: 768px) {
  .text-container { font-size: 16px; line-height: 1.7; }
  .text-container h3 { font-size: 22px; }
  .content-img { max-width: 100%; }
  .important-note { padding: 22px 24px; }
}

/* ========== ПОДРОБНАЯ СТРАНИЦА (УСЛУГИ / НОВОСТИ) — стиль KÜLTURA ========== */


/* ========== ВСПЛЫВАЮЩАЯ ФОРМА — стиль KÜLTURA ========== */

/* Затемнение фона (необязательно: <div class="popup-overlay"></div>) */
.popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(12, 20, 14, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 999;
}

/* Само окно */
.popup-form {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1000;

  width: min(520px, calc(100% - 32px));
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  padding: 40px;

  background: linear-gradient(145deg, rgba(46, 65, 50, 0.98), rgba(34, 49, 38, 0.98));
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--border-strong);
  border-radius: 28px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 30px 80px rgba(6, 14, 9, 0.55);
  color: var(--fg);
}

.popup-form h2 {
  margin: 0 0 8px;
  font-family: 'Georgia', serif;
  font-weight: 400;
  font-size: 30px;
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--fg);
}
.popup-form h2 em,
.popup-form h2 span { color: var(--accent); font-style: italic; }

.popup-form label {
  display: block;
  margin-bottom: 8px;
  font-family: 'SF Mono', Menlo, monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Поля ввода */
.popup-form input,
.popup-form textarea {
  width: 100%;
  padding: 15px 18px;
  margin-bottom: 18px;
  box-sizing: border-box;
  background: rgba(20, 34, 24, 0.28);
  border: 1px solid var(--border);
  border-radius: 14px;
  color: var(--fg);
  font-family: inherit;
  font-size: 15px;
  transition: border-color 0.25s, background 0.25s;
}
.popup-form textarea { min-height: 110px; resize: vertical; }
.popup-form input::placeholder,
.popup-form textarea::placeholder { color: rgba(255, 255, 255, 0.35); }
.popup-form input:focus,
.popup-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(20, 34, 24, 0.42);
}

/* Кнопка отправки — в потоке, не absolute */
.popup-form input[type="submit"] {
  width: 100%;
  margin: 8px 0 0;
  padding: 17px 32px;
  background: var(--accent);
  color: var(--bg);
  border: none;
  border-radius: 100px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s;
}
.popup-form input[type="submit"]:hover {
  background: var(--fg);
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(197, 255, 61, 0.3);
}

/* Крестик закрытия */
.popup-form .close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  color: var(--fg);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  transition: all 0.25s;
}
.popup-form .close:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--bg);
  transform: rotate(90deg);
}

/* Согласия (чекбоксы) */
.soglasie,
.soglasie2 {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}
.soglasie2 { margin-bottom: 24px; }

.soglasie-title,
.soglasie-title2 {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: var(--muted);
  order: 2;
}
.soglasie-title a,
.soglasie-title2 a {
  color: var(--accent);
  text-decoration: none;
}
.soglasie-title a:hover,
.soglasie-title2 a:hover { text-decoration: underline; }

.checkbox,
.checkbox2 {
  position: static;
  order: 1;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  accent-color: var(--accent);
  cursor: pointer;
}

/* Адаптив */
@media (max-width: 768px) {
  .popup-form { padding: 28px 22px; border-radius: 22px; }
  .popup-form h2 { font-size: 24px; }
  .popup-form input,
  .popup-form textarea { padding: 13px 15px; margin-bottom: 14px; }
}

/* ===== Сообщение после отправки формы ===== */
.form-status {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 0;
  padding: 0 18px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-6px);
  border-radius: 16px;
  border: 1px solid transparent;
  font-size: 14.5px;
  line-height: 1.5;
  transition: opacity .35s ease, transform .35s ease, max-height .35s ease,
              margin-top .35s ease, padding .35s ease;
}

/* Видимое состояние */
.form-status.show {
  max-height: 200px;
  margin-top: 18px;
  padding: 16px 18px;
  opacity: 1;
  transform: translateY(0);
}

/* Иконка слева */
.form-status::before {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 900;
}

/* Успех */
.form-status.is-success {
  background: linear-gradient(135deg, rgba(197, 255, 61, 0.12), rgba(197, 255, 61, 0.04));
  border-color: rgba(197, 255, 61, 0.45);
  color: var(--fg);
}
.form-status.is-success::before {
  content: '✓';
  background: var(--accent);
  color: var(--bg);
}

/* Ошибка */
.form-status.is-error {
  background: linear-gradient(135deg, rgba(255, 143, 107, 0.12), rgba(255, 143, 107, 0.04));
  border-color: rgba(255, 143, 107, 0.45);
  color: var(--fg);
}
.form-status.is-error::before {
  content: '!';
  background: #ff8f6b;
  color: #2a1710;
}

/* ===== Неактивная кнопка отправки (пока не отмечено согласие) ===== */
.form-fields button[type="submit"]:disabled,
.form-fields button[type="submit"].is-disabled,
.popup-form input[type="submit"].is-disabled {
  opacity: .5;
  transform: none;
  box-shadow: none;
  filter: grayscale(.3);
  /* кликабельна: иначе не показать подсказку про согласие */
}
.form-fields button[type="submit"]:disabled:hover,
.form-fields button[type="submit"].is-disabled:hover {
  transform: none;
  box-shadow: none;
}


/* ===== Подсветка чекбокса согласия, если его забыли отметить ===== */
.soglasie.is-required {
  border-radius: 12px;
  padding: 10px 12px;
  margin: -10px -12px;
  background: rgba(255, 143, 107, .10);
  box-shadow: inset 0 0 0 1px rgba(255, 143, 107, .55);
  animation: consentShake .45s ease;
}
.soglasie.is-required .checkbox input {
  outline: 2px solid #ff8f6b;
  outline-offset: 2px;
  border-radius: 3px;
}
@keyframes consentShake {
  0%, 100% { transform: translateX(0); }
  25%      { transform: translateX(-5px); }
  75%      { transform: translateX(5px); }
}

/*--------------------------------------------------------------
* Навигация по страницам (пагинация) — стиль KÜLTURA
--------------------------------------------------------------*/
.navigation {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 56px;
  padding: 20px 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}
.navigation:hover {
  transform: none;
  border-color: transparent;
  box-shadow: none;
}
.page_prev,
.page_next {
  margin: 0;
}
.navigation a {
  text-decoration: none !important;
}

/* ---- Кнопки «Назад» / «Вперёд» ---- */
.nazad,
.vpered {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 26px;
  border-radius: 100px;
  border: 1px solid transparent;
  background: var(--accent);
  color: var(--bg);
  font-family: 'SF Mono', Menlo, monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s;
}
.nazad:hover,
.vpered:hover {
  background: var(--fg);
  color: var(--bg);
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(197, 255, 61, 0.3);
}

/* Неактивная кнопка (когда страницы нет — DLE оборачивает в <span>) */
.page_prev span .nazad,
.page_next span .vpered,
span > .nazad,
span > .vpered {
  background: var(--card);
  color: var(--muted);
  border: 1px solid var(--border);
  cursor: default;
  opacity: 0.5;
  transform: none;
  box-shadow: none;
}
.page_prev span .nazad:hover,
.page_next span .vpered:hover,
span > .nazad:hover,
span > .vpered:hover {
  background: var(--card);
  color: var(--muted);
  transform: none;
  box-shadow: none;
}

/* ---- Номера страниц ---- */
.pages {
  display: flex;
  align-items: center;
  gap: 8px;
}
.pages a,
.pages span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  font-family: 'SF Mono', Menlo, monospace;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none !important;
  transition: all 0.3s;
}

/* Обычная страница — «стекло» */
.pages a {
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--fg);
}
.pages a:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(197, 255, 61, 0.06);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(8, 18, 11, 0.28);
}

/* Текущая страница — акцент */
.pages span {
  background: var(--accent);
  border: 1px solid var(--accent);
  color: var(--bg);
  font-weight: 700;
  box-shadow: 0 0 24px rgba(197, 255, 61, 0.22);
}

/* Многоточие между номерами, если есть */
.pages .nav_ext {
  background: transparent;
  border: 0;
  color: var(--muted);
  box-shadow: none;
}

/* ---- Адаптив ---- */
@media (max-width: 768px) {
  .navigation {
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 36px;
  }
  .nazad,
  .vpered {
    min-height: 40px;
    padding: 0 18px;
    font-size: 11px;
  }
  .pages a,
  .pages span {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    font-size: 13px;
  }
}
/*--------------------------------------------------------------
* Конец навигации
--------------------------------------------------------------*/

/*--------------------------------------------------------------
* Уведомление о cookie — стиль KÜLTURA
--------------------------------------------------------------*/
.cookie_notice {
  display: none;
  position: fixed;
  z-index: 9999999;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 22px 24px;
  text-align: center;
  background: linear-gradient(145deg, rgba(46, 65, 50, 0.96), rgba(34, 49, 38, 0.96));
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--border-strong);
  box-shadow: 0 -18px 50px rgba(6, 14, 9, 0.45);
}
.cookie_text {
  display: inline-block;
  max-width: 950px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 1.7;
}
.cookie_text a {
  color: var(--accent);
  text-decoration: none;
  transition: 0.3s;
}
.cookie_text a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.cookie_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 16px 6px 0;
  padding: 0 28px;
  min-height: 44px;
  border-radius: 100px;
  border: 1px solid transparent;
  background: var(--accent);
  color: var(--bg);
  font-family: 'SF Mono', Menlo, monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;  
}
.cookie_btn:hover {
  background: var(--fg);
  color: var(--bg);
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(197, 255, 61, 0.3);
}
.cookie_btn:before,
.cookie_btn:after {
  display: none;
}

/* Второстепенная кнопка («Отказаться» / «Настройки»), если есть */
.cookie_btn.is-secondary {
  background: var(--card);
  border-color: var(--border);
  color: var(--fg);
}
.cookie_btn.is-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(197, 255, 61, 0.06);
  box-shadow: none;
}

@media (max-width: 768px) {
  .cookie_notice {
    padding: 18px 16px;
  }
  .cookie_text {
    display: block;
    font-size: 14px;
    line-height: 1.6;
  }
  .cookie_btn {
    display: flex;
    width: 220px;
    height: 44px;
    margin: 16px auto 0;
    padding: 0 24px;
    text-align: center;
  }
}
/*--------------------------------------------------------------
* Конец уведомления о cookie
--------------------------------------------------------------*/

/* ========== КНОПКА «НАВЕРХ» — стиль KÜLTURA ========== */
.scroll-top {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--accent);
  color: var(--bg);
  border: 1px solid transparent;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.35s cubic-bezier(.2, .8, .2, 1);
  z-index: 999;
  box-shadow: 0 12px 34px rgba(197, 255, 61, 0.28);
}
.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.scroll-top:hover {
  background: var(--fg);
  color: var(--bg);
  transform: translateY(-5px);
  box-shadow: 0 18px 44px rgba(197, 255, 61, 0.42);
}
.scroll-top::after {
  content: '↑';
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  transition: transform 0.3s;
}
.scroll-top:hover::after {
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .scroll-top {
    bottom: 20px;
    right: 20px;
    width: 46px;
    height: 46px;
  }
  .scroll-top::after { font-size: 20px; }
}
/* ========== КОНЕЦ КНОПКИ «НАВЕРХ» ========== */


/* ==================================================================
   УНИКАЛЬНЫЕ СТИЛИ СТРАНИЦЫ 404 — только то, чего нет в styles.css
   ================================================================== */

.error-main {
  width: 100%;
  padding: 200px 40px 120px;
  position: relative;
  z-index: 2;
}
.error-container {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

/* Цифра 404 */
.error-code {
  font-family: 'Georgia', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(110px, 20vw, 220px);
  line-height: 1;
  color: var(--accent);
  letter-spacing: -0.02em;
  text-shadow: 0 20px 70px rgba(197, 255, 61, 0.22);
}

/* Метка над заголовком */
.error-label {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 26px;
  color: var(--accent);
  font-family: 'SF Mono', Menlo, monospace;
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}
.error-label::before {
  content: '';
  width: 36px;
  height: 1px;
  background: var(--accent);
}

.error-title {
  font-family: 'Georgia', serif;
  font-weight: 400;
  font-size: clamp(30px, 5vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 18px 0 18px;
  color: var(--fg);
}
.error-title em {
  font-style: italic;
  color: var(--accent);
}

.error-text {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
  max-width: 560px;
  margin: 0 auto 44px;
}

/* Кнопки */
.error-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

/* Быстрые ссылки на разделы */
.error-links {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}
.error-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: 100px;
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--fg);
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s;
}
.error-link:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(197, 255, 61, 0.06);
  transform: translateY(-2px);
}

/* Блок контактов */
.help-block {
  border-top: 1px solid var(--border);
  padding-top: 44px;
}
.help-title {
  font-family: 'SF Mono', Menlo, monospace;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 24px;
}
.contacts-mini {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.contact-chip {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 13px 24px;
  border-radius: 100px;
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--fg);
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s;
}
.contact-chip:hover {
  border-color: var(--accent);
  background: rgba(197, 255, 61, 0.06);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(8, 18, 11, 0.28);
}
.contact-chip svg {
  width: 18px;
  height: 18px;
  color: var(--accent);
  flex-shrink: 0;
}

/* Появление (без JS) */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 0.7s cubic-bezier(.2, .8, .2, 1) forwards;
}
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
.delay-1 { animation-delay: 0.12s; }
.delay-2 { animation-delay: 0.24s; }
.delay-3 { animation-delay: 0.36s; }
.delay-4 { animation-delay: 0.48s; }

@media (max-width: 768px) {
  .error-main { padding: 150px 20px 80px; }
  .error-text { font-size: 15px; margin-bottom: 34px; }
  .error-buttons,
  .error-links { margin-bottom: 44px; }
  .contact-chip { padding: 11px 18px; font-size: 14px; }
}
/* ==================================================================
   КОНЕЦ УНИКАЛЬНЫХ СТИЛЕЙ 404
   ================================================================== */