:root {
  --bg-dark: #0f0a13;
  --bg-mid: #1c1424;
  --bg-light: #fefbff;
  --text-main: #1e1525;
  --text-muted: rgba(30, 21, 37, 0.72);
  --accent: #ec8bd0;
  --accent-strong: #9c7bff;
  --glass: rgba(255, 255, 255, 0.78);
  --shadow-soft: 0 20px 70px rgba(11, 9, 20, 0.35);
  --radius-xl: 36px;
  --radius-lg: 24px;
  --radius-pill: 999px;
  --transition: 260ms ease;
}

/* Стили для сердечек курсора */
.cursor-heart {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  user-select: none;
  width: 16px;
  height: 16px;
  opacity: 0.6;
  animation: heartFloat 2s ease-out forwards;
  filter: blur(0.5px);
  transform-origin: center;
  background: currentColor;
  /* Форма сердечка через clip-path */
  clip-path: path('M8,14 C8,14 0,8 0,5 C0,2.5 2,1 4,1 C5.5,1 6.5,2 8,4 C9.5,2 10.5,1 12,1 C14,1 16,2.5 16,5 C16,8 8,14 8,14 Z');
}

@keyframes heartFloat {
  0% {
    opacity: 0.6;
    transform: translate(0, 0) scale(0.6) rotate(0deg);
    filter: blur(0.5px) brightness(1);
  }
  30% {
    opacity: 0.5;
  }
  70% {
    opacity: 0.3;
  }
  100% {
    opacity: 0;
    transform: translate(var(--tx), var(--ty)) scale(1.4) rotate(var(--rot));
    filter: blur(1px) brightness(1.2);
  }
}

/* Отключаем эффект на мобильных устройствах */
@media (hover: none) and (pointer: coarse) {
  .cursor-heart {
    display: none;
  }
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text-main);
  background: radial-gradient(circle at 20% 20%, rgba(236, 139, 208, 0.35), transparent 45%),
              radial-gradient(circle at 80% 0%, rgba(156, 123, 255, 0.25), transparent 55%),
              radial-gradient(circle at 50% 80%, rgba(130, 217, 200, 0.25), transparent 60%),
              linear-gradient(120deg, var(--bg-dark), #1e0f2c 55%, var(--bg-mid));
  background-attachment: fixed;
  display: flex;
  flex-direction: column;
  padding: 24px clamp(16px, 5vw, 80px) 32px;
}

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

a {
  color: inherit;
}

.backdrop {
  position: fixed;
  inset: 0;
  overflow: hidden;
  z-index: -1;
}

.orb {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.6;
  animation: drift 24s ease-in-out infinite;
}

.orb-lilac { background: #caa2ff; top: -40px; left: 10%; }
.orb-blush { background: #ffbcd8; bottom: 5%; right: 15%; animation-delay: -6s; }
.orb-mint  { background: #8ef1d6; top: 20%; right: 0; animation-delay: -12s; }

.site-header,
.content,
.site-footer {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px clamp(16px, 4vw, 32px);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(8, 4, 18, 0.4);
  backdrop-filter: blur(18px);
  gap: 24px;
  color: #fff;
  position: sticky;
  top: 0;
  overflow: visible;
  z-index: 1000;
  transition: all 0.3s ease;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 32px rgba(8, 4, 18, 0.5);
  padding: 10px clamp(16px, 4vw, 32px);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: all 0.4s ease;
}

.brand-quote {
  font-family: "Cormorant Garamond", "Playfair Display", serif;
  font-size: 24px;
  font-weight: 400;
  font-style: italic;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  line-height: 1.3;
  letter-spacing: 0.02em;
  text-align: center;
  transition: all 0.4s ease;
}

.brand-secret {
  font-family: "Cormorant Garamond", "Playfair Display", serif;
  font-size: 18px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  line-height: 1.4;
  letter-spacing: 0.05em;
  text-align: center;
  font-style: italic;
  transition: all 0.4s ease;
}

.brand-logo-wrapper:hover ~ .brand-text,
.brand:hover .brand-text {
  transform: translateY(-2px);
}

.brand-logo-wrapper:hover ~ .brand-text .brand-quote,
.brand:hover .brand-text .brand-quote {
  color: rgba(255, 255, 255, 1);
  text-shadow: 
    0 0 20px rgba(236, 139, 208, 0.8),
    0 0 40px rgba(156, 123, 255, 0.6),
    0 0 60px rgba(202, 160, 255, 0.4);
  transform: scale(1.02);
}

.brand-logo-wrapper:hover ~ .brand-text .brand-secret,
.brand:hover .brand-text .brand-secret {
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 
    0 0 15px rgba(236, 139, 208, 0.7),
    0 0 30px rgba(156, 123, 255, 0.5),
    0 0 45px rgba(202, 160, 255, 0.3);
  transform: scale(1.01);
}

/* Скрываем текст при scrolled на десктопе */
.site-header.scrolled .brand-text {
  display: none;
}

/* Уменьшаем логотип при scrolled */
.site-header.scrolled .brand-logo-wrapper {
  width: 60px;
  height: 60px;
  transition: width 0.3s ease, height 0.3s ease;
}

.site-header.scrolled .brand-logo {
  padding: 8px;
  transition: padding 0.3s ease;
}

.site-header.scrolled .brand-logo-glow {
  inset: -6px;
  filter: blur(12px);
  transition: all 0.3s ease;
}

.site-header.scrolled .brand-logo-ring {
  inset: -3px;
  border-width: 1px;
  transition: all 0.3s ease;
}

/* Компактный brand при scrolled */
.site-header.scrolled .brand {
  gap: 12px;
  transition: gap 0.3s ease;
}

/* Элегантная полоса с кнопками при scrolled */
.site-header.scrolled .contact-nav {
  gap: 8px;
  transition: gap 0.3s ease;
}

.brand-logo-wrapper {
  position: relative;
  width: 130px;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.brand-logo-wrapper:active {
  transform: scale(0.95);
}

.brand-logo-glow {
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(236, 139, 208, 0.5), rgba(156, 123, 255, 0.4), transparent 70%);
  filter: blur(20px);
  opacity: 0.7;
  animation: logoGlow 3s ease-in-out infinite;
  z-index: 0;
}

.brand-logo-ring {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.15);
  animation: logoRing 4s ease-in-out infinite;
  z-index: 1;
  pointer-events: none;
}

.brand-logo {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: contain;
  background: 
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.4), transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(202, 160, 255, 0.3), transparent 50%),
    linear-gradient(135deg, rgba(139, 111, 181, 0.3), rgba(122, 95, 164, 0.4));
  padding: 14px;
  backdrop-filter: blur(20px);
  box-shadow: 
    0 0 0 1px rgba(255, 255, 255, 0.2),
    0 8px 32px rgba(0, 0, 0, 0.4),
    0 0 60px rgba(156, 123, 255, 0.3),
    inset 0 2px 20px rgba(255, 255, 255, 0.3),
    inset -2px -2px 20px rgba(0, 0, 0, 0.2),
    inset 20px 20px 40px rgba(255, 255, 255, 0.1);
  z-index: 2;
  transition: transform 0.4s ease, box-shadow 0.4s ease, filter 0.4s ease;
  animation: logoFloat 6s ease-in-out infinite;
  filter: contrast(1.15) brightness(1.1);
  overflow: hidden;
}

.brand-logo::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, transparent 70%);
  border-radius: 50%;
  animation: glassShine 8s ease-in-out infinite;
  pointer-events: none;
  z-index: 3;
}

.brand-logo::after {
  content: "";
  position: absolute;
  top: 15%;
  left: 20%;
  width: 30%;
  height: 30%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.6) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(8px);
  pointer-events: none;
  z-index: 3;
}

.brand-logo-wrapper:hover .brand-logo {
  transform: scale(1.08) rotate(5deg);
  box-shadow: 
    0 0 0 1px rgba(255, 255, 255, 0.3),
    0 12px 40px rgba(0, 0, 0, 0.5),
    0 0 80px rgba(236, 139, 208, 0.5),
    inset 0 2px 20px rgba(255, 255, 255, 0.4),
    inset -2px -2px 20px rgba(0, 0, 0, 0.3),
    inset 20px 20px 40px rgba(255, 255, 255, 0.15);
  filter: contrast(1.2) brightness(1.15);
}

.brand-logo-wrapper:hover .brand-logo-glow {
  opacity: 1;
  animation-duration: 1.5s;
  filter: blur(25px);
}

.brand-logo-wrapper:hover .brand-logo-ring {
  border-color: rgba(255, 255, 255, 0.3);
  animation-duration: 2s;
}

@keyframes glassShine {
  0%, 100% {
    transform: translate(-50%, -50%) rotate(0deg);
    opacity: 0.3;
  }
  50% {
    transform: translate(-30%, -30%) rotate(180deg);
    opacity: 0.6;
  }
}

@keyframes logoGlow {
  0%, 100% {
    opacity: 0.5;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.1);
  }
}

@keyframes logoRing {
  0%, 100% {
    opacity: 0.6;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
}

@keyframes logoFloat {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-4px) rotate(1deg);
  }
}

.contact-nav {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.menu-wrapper {
  position: relative;
  z-index: 10001;
}

.nav-link {
  border-radius: var(--radius-lg);
  padding: 12px 20px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.02em;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.5s ease;
}

.nav-link:hover::before {
  left: 100%;
}

.nav-link-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  stroke: currentColor;
  transition: transform 0.3s ease;
}

.nav-link-text {
  font-weight: 500;
  white-space: nowrap;
}

.nav-link-number {
  font-size: 11px;
  opacity: 0.8;
  font-weight: 400;
  white-space: nowrap;
  margin-left: auto;
}

.nav-link--phone {
  background: rgba(236, 139, 208, 0.15);
  border-color: rgba(236, 139, 208, 0.3);
}

.nav-link--phone:hover,
.nav-link--phone:focus-visible {
  background: rgba(236, 139, 208, 0.25);
  border-color: rgba(236, 139, 208, 0.5);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(236, 139, 208, 0.2);
}

.nav-link--phone:hover .nav-link-icon {
  transform: scale(1.1) rotate(5deg);
}

.nav-link--whatsapp {
  background: rgba(156, 123, 255, 0.15);
  border-color: rgba(156, 123, 255, 0.3);
}

.nav-link--whatsapp:hover,
.nav-link--whatsapp:focus-visible {
  background: rgba(156, 123, 255, 0.25);
  border-color: rgba(156, 123, 255, 0.5);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(156, 123, 255, 0.2);
}

.nav-link--whatsapp:hover .nav-link-icon {
  transform: scale(1.1);
}

.nav-link:hover,
.nav-link:focus-visible {
  outline: none;
}

.site-header.scrolled .nav-link {
  padding: 10px 16px;
  font-size: 12px;
  gap: 8px;
}

.site-header.scrolled .nav-link-icon {
  width: 16px;
  height: 16px;
}

.site-header.scrolled .nav-link-text {
  font-size: 12px;
}

.site-header.scrolled .nav-link-number {
  font-size: 10px;
}

.site-header.scrolled .nav-link--phone {
  background: rgba(236, 139, 208, 0.18);
  border-color: rgba(236, 139, 208, 0.35);
}

.site-header.scrolled .nav-link--phone:hover,
.site-header.scrolled .nav-link--phone:focus-visible {
  background: rgba(236, 139, 208, 0.28);
  border-color: rgba(236, 139, 208, 0.55);
}

.site-header.scrolled .nav-link--whatsapp {
  background: rgba(156, 123, 255, 0.18);
  border-color: rgba(156, 123, 255, 0.35);
}

.site-header.scrolled .nav-link--whatsapp:hover,
.site-header.scrolled .nav-link--whatsapp:focus-visible {
  background: rgba(156, 123, 255, 0.28);
  border-color: rgba(156, 123, 255, 0.55);
}

.menu-toggle {
  border-radius: var(--radius-pill);
  padding: 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  cursor: pointer;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 48px;
  height: 40px;
}

.menu-label {
  display: none;
  font-weight: 600;
  animation: menuPulse 2.5s ease-in-out infinite;
  letter-spacing: 0.08em;
}

.menu-toggle:hover .menu-label,
.menu-toggle:focus-visible .menu-label {
  animation-play-state: paused;
  opacity: 1;
  transform: scale(1.1);
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
  border-color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.2);
  outline: none;
}

.site-header.scrolled .menu-toggle {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  padding: 8px 16px;
  height: 36px;
  font-size: 12px;
  transition: all 0.3s ease;
}

.site-header.scrolled .menu-toggle:hover,
.site-header.scrolled .menu-toggle:focus-visible {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-1px);
}

.menu-toggle[aria-expanded="true"] {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.6);
}

.menu-icon {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 20px;
  height: 16px;
  position: relative;
}

.menu-icon span {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--transition);
}

.menu-toggle[aria-expanded="true"] .menu-icon span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle[aria-expanded="true"] .menu-icon span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-icon span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(8, 4, 18, 0.5);
  padding: 8px;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
  z-index: 10002;
  display: flex;
  flex-direction: column;
  gap: 2px;
  pointer-events: none;
  overflow: visible;
}

.dropdown-menu.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.menu-item {
  padding: 14px 18px;
  border-radius: 12px;
  color: var(--text-main);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: var(--transition);
  display: block;
  position: relative;
  z-index: 10003;
  pointer-events: auto;
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.menu-item:hover,
.menu-item:focus-visible {
  background: rgba(236, 139, 208, 0.12);
  color: var(--accent-strong);
  outline: none;
}

.content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(24px, 5vw, 56px) 0;
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(32px, 5vw, 64px);
  background: rgba(255, 255, 255, 0.85);
  border-radius: var(--radius-xl);
  padding: clamp(24px, 5vw, 72px);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255, 255, 255, 0.7);
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: calc(var(--radius-xl) - 16px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  pointer-events: none;
}

.hero-text {
  position: relative;
  z-index: 1;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 18px;
}

h1 {
  font-size: clamp(32px, 6vw, 48px);
  margin: 0 0 18px;
  letter-spacing: -0.01em;
}

.lead {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 24px 0;
}

.btn-primary,
.btn-ghost {
  border-radius: var(--radius-pill);
  padding: 16px 28px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 200px;
}

.btn-primary {
  background: linear-gradient(120deg, var(--accent), var(--accent-strong));
  color: #1d0d1b;
  box-shadow: 0 20px 45px rgba(236, 139, 208, 0.45);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 30px 50px rgba(156, 123, 255, 0.4);
  outline: none;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  outline: none;
}

.note {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.contact-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
}

.contact-label {
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.3em;
  color: rgba(30, 21, 37, 0.55);
}

.contact-value {
  display: block;
  font-size: 17px;
  font-weight: 500;
  margin-top: 8px;
  color: var(--text-main);
  text-decoration: none;
}

.contact-value:hover,
.contact-value:focus-visible,
.contact-value a:hover,
.contact-value a:focus-visible {
  color: var(--accent-strong);
  outline: none;
}

.contact-value a {
  color: inherit;
  text-decoration: none;
  display: inline-block;
}

address {
  font-style: normal;
  line-height: 1.6;
}

.hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
  justify-content: center;
}

.visual-card {
  width: min(340px, 100%);
  min-height: 320px;
  aspect-ratio: 1 / 1;
  border-radius: 32px;
  padding: 32px;
  background: linear-gradient(160deg, #fff, #f8f1ff);
  border: 1px solid rgba(30, 21, 37, 0.08);
  box-shadow: 0 30px 70px rgba(17, 6, 35, 0.15);
  position: relative;
}

.visual-ring {
  position: absolute;
  inset: 18px;
  border-radius: 28px;
  border: 1px dashed rgba(30, 21, 37, 0.2);
  animation: pulse 9s ease-in-out infinite;
}

.visual-core {
  position: absolute;
  inset: 50px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.9), rgba(216, 187, 255, 0.7));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 15px 30px rgba(255, 255, 255, 0.6), 0 20px 40px rgba(17, 6, 35, 0.12);
}

.visual-core img {
  width: 72%;
  border-radius: 24px;
  background: #fff;
  padding: 8px;
}

.visual-caption {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  color: rgba(30, 21, 37, 0.65);
}

.status-card {
  width: 100%;
  border-radius: var(--radius-lg);
  padding: 18px;
  background: rgba(30, 21, 37, 0.05);
  border: 1px solid rgba(30, 21, 37, 0.08);
  display: flex;
  gap: 12px;
  align-items: center;
}

.status-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(120deg, var(--accent), var(--accent-strong));
  animation: glow 2.4s ease-in-out infinite;
}

.status-label {
  margin: 0;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: rgba(30, 21, 37, 0.6);
}

.status-text {
  margin: 4px 0 0;
  font-size: 15px;
  color: var(--text-main);
}

.site-footer {
  margin-top: 24px;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  padding: 24px 16px;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
}

.footer-rating {
  margin-top: 8px;
}

.footer-rating iframe {
  border-radius: 8px;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.footer-rating iframe:hover {
  opacity: 1;
}

[data-animate] {
  opacity: 0;
  transform: translateY(16px);
  transition: 600ms ease;
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes drift {
  0% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(30px, -40px, 0); }
  100% { transform: translate3d(0, 0, 0); }
}

@keyframes glow {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

@keyframes pulse {
  0% { transform: scale(0.96); opacity: 0.5; }
  50% { transform: scale(1.04); opacity: 1; }
  100% { transform: scale(0.96); opacity: 0.5; }
}

@keyframes menuPulse {
  0%, 100% { 
    opacity: 1;
    transform: scale(1);
    text-shadow: 0 0 0 rgba(255, 255, 255, 0);
  }
  50% { 
    opacity: 0.85;
    transform: scale(1.08);
    text-shadow: 0 0 12px rgba(255, 255, 255, 0.4);
  }
}

@media (max-width: 900px) {
  .site-header {
    flex-direction: column;
    align-items: center;
    position: static;
    padding: 20px 16px;
    overflow: visible;
  }

  .brand-logo-wrapper {
    width: 110px;
    height: 110px;
  }

  .brand-logo {
    padding: 12px;
    border-radius: 50%;
  }

  .brand-logo-glow {
    inset: -10px;
    filter: blur(16px);
  }

  .brand-logo-ring {
    inset: -5px;
    border-radius: 50%;
  }

  .brand {
    flex-direction: column;
    gap: 14px;
    width: 100%;
    align-items: center;
  }

  .brand-text {
    gap: 3px;
    text-align: center;
  }

  .brand-quote {
    font-size: 20px;
  }

  .brand-secret {
    font-size: 16px;
  }

  .contact-nav {
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 16px;
  }

  .nav-link {
    font-size: 12px;
    padding: 10px 16px;
    flex: 1;
    min-width: 0;
    gap: 8px;
  }

  .nav-link-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
  }

  .nav-link-text {
    font-size: 12px;
  }

  .nav-link-number {
    font-size: 10px;
    margin-left: auto;
  }

  .dropdown-menu {
    right: 0;
    left: auto;
    min-width: 220px;
  }

  .menu-wrapper {
    position: relative;
  }
}

@media (max-width: 640px) {
  body {
    padding: 16px;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .site-header,
  .content,
  .site-footer {
    width: 100%;
  }

  .site-header {
    position: static;
    padding: 16px;
    align-items: center;
    display: flex;
    flex-direction: column;
    overflow: visible;
  }

  .site-header.scrolled {
    padding-bottom: 0;
  }

  .brand {
    flex-direction: column;
    gap: 12px;
    width: 100%;
    align-items: center;
    margin-bottom: 0;
  }

  .brand-logo-wrapper {
    width: 95px;
    height: 95px;
  }

  .brand-logo {
    padding: 10px;
    border-radius: 50%;
  }

  .brand-logo-glow {
    inset: -8px;
    filter: blur(14px);
  }

  .brand-logo-ring {
    inset: -4px;
    border-width: 1.5px;
    border-radius: 50%;
  }

  .brand-text {
    gap: 2px;
    text-align: center;
  }

  .brand-quote {
    font-size: 18px;
  }

  .brand-secret {
    font-size: 14px;
  }

  .contact-nav {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    width: 100%;
    position: relative;
    background: rgba(255, 255, 255, 0.12);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
    border-radius: var(--radius-lg);
    padding: 12px;
    margin-top: 16px;
    margin-left: auto;
    margin-right: auto;
    z-index: 999;
    box-shadow: 0 10px 40px rgba(8, 4, 18, 0.5);
    transition: all 0.3s ease;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    will-change: transform;
    -webkit-overflow-scrolling: touch;
    box-sizing: border-box;
  }

  .contact-nav .nav-link {
    flex: 1 1 auto;
    min-width: calc(50% - 4px);
    max-width: calc(50% - 4px);
    flex-shrink: 0;
    padding: 10px 12px;
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }

  .contact-nav .nav-link-icon {
    width: 20px;
    height: 20px;
    margin: 0 auto;
  }

  .contact-nav .nav-link-text {
    font-size: 11px;
  }

  .contact-nav .nav-link-number {
    font-size: 10px;
    margin-left: 0;
    margin-top: 2px;
  }

  .contact-nav .menu-wrapper {
    width: 100%;
    margin-top: 8px;
    order: 10;
    flex-basis: 100%;
  }





  .menu-toggle {
    width: 100%;
    justify-content: center;
    padding: 12px 20px;
  }

  .menu-label {
    display: inline-block;
  }

  .dropdown-menu {
    right: 0;
    left: 0;
    width: 100%;
    min-width: auto;
  }

  .hero {
    padding: 24px 20px 36px;
  }

  .cta-row {
    flex-direction: column;
  }

  .btn-primary,
  .btn-ghost {
    width: 100%;
  }

  .contact-list {
    margin-bottom: 32px;
  }

  .hero-visual {
    width: 100%;
    margin-top: 12px;
    align-items: stretch;
  }

  .visual-card {
    width: 100%;
    aspect-ratio: 1 / 1;
    min-height: unset;
    margin-bottom: 14px;
  }

  .status-card {
    width: 100%;
  }
}

/* ============================================
   СТИЛИ ДЛЯ ВНУТРЕННИХ СТРАНИЦ
   ============================================ */

/* Page Hero */
.page-hero {
  padding: clamp(60px, 8vw, 100px) 0 clamp(40px, 6vw, 60px);
  text-align: center;
}

.page-hero-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 16px;
}

.page-title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  color: #fff;
  margin: 0 0 16px;
  line-height: 1.2;
}

.page-subtitle {
  font-size: clamp(18px, 2.5vw, 24px);
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  line-height: 1.5;
}

/* Page Section */
.page-section {
  padding: 60px 0;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 32px);
}

/* Text Block */
.text-block {
  margin-bottom: 60px;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.text-block p {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 auto 20px;
  text-align: center;
}

.lead-text {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 24px !important;
  text-align: center;
}

/* Feature Block - Красивый блок для описания */
.feature-block {
  width: 100%;
  margin: 0;
  position: relative;
  padding: 0;
  box-sizing: border-box;
}

.feature-block-content {
  background: linear-gradient(135deg, rgba(236, 139, 208, 0.15), rgba(156, 123, 255, 0.15));
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-xl);
  padding: clamp(40px, 6vw, 60px) clamp(32px, 5vw, 56px);
  backdrop-filter: blur(25px);
  box-shadow: 
    0 25px 70px rgba(8, 4, 18, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.15) inset,
    0 0 100px rgba(236, 139, 208, 0.2),
    0 0 150px rgba(156, 123, 255, 0.15);
  position: relative;
  overflow: hidden;
  text-align: center;
  width: 100%;
  max-width: 100%;
}

.feature-block-content::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(236, 139, 208, 0.1) 0%, transparent 70%);
  animation: featureGlow 8s ease-in-out infinite;
  pointer-events: none;
}

.feature-block-content::after {
  content: '';
  position: absolute;
  bottom: -30%;
  right: -30%;
  width: 150%;
  height: 150%;
  background: radial-gradient(circle, rgba(156, 123, 255, 0.1) 0%, transparent 70%);
  animation: featureGlow 10s ease-in-out infinite reverse;
  pointer-events: none;
}

@keyframes featureGlow {
  0%, 100% {
    opacity: 0.5;
    transform: translate(0, 0) scale(1);
  }
  50% {
    opacity: 0.8;
    transform: translate(10px, -10px) scale(1.1);
  }
}

.feature-lead {
  font-family: "Cormorant Garamond", "Playfair Display", serif;
  font-size: clamp(24px, 3.5vw, 32px);
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.98);
  margin: 0 auto 28px;
  position: relative;
  z-index: 1;
  letter-spacing: 0.02em;
  text-align: center;
  max-width: 800px;
}

.feature-text {
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(17px, 2.2vw, 19px);
  font-weight: 400;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.88);
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
  letter-spacing: 0.01em;
  text-align: center;
  max-width: 720px;
}

.feature-text--spaced {
  margin-top: 32px;
  margin-bottom: 28px;
}

.text-highlight {
  color: rgba(236, 139, 208, 1);
  font-weight: 500;
  text-shadow: 0 0 20px rgba(236, 139, 208, 0.4);
}

.text-emphasis {
  color: rgba(255, 255, 255, 0.98);
  font-weight: 500;
  font-style: italic;
}

.feature-quote {
  font-family: "Cormorant Garamond", "Playfair Display", serif;
  font-size: clamp(19px, 2.8vw, 24px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.92);
  margin: 36px auto 32px;
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 680px;
  letter-spacing: 0.02em;
  padding: 0 20px;
  position: relative;
}

.feature-quote::before,
.feature-quote::after {
  content: '"';
  font-size: 1.5em;
  color: rgba(236, 139, 208, 0.6);
  position: absolute;
  font-family: "Cormorant Garamond", serif;
}

.feature-quote::before {
  left: 0;
  top: -5px;
}

.feature-quote::after {
  right: 0;
  bottom: -15px;
}

.feature-cta-text {
  font-family: "Cormorant Garamond", "Playfair Display", serif;
  font-size: clamp(20px, 2.8vw, 24px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.95);
  margin: 40px auto 0;
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 650px;
  letter-spacing: 0.02em;
}

.feature-cta-buttons {
  display: flex;
  justify-content: center;
  margin-top: 32px;
  position: relative;
  z-index: 1;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 32px;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.2), rgba(37, 211, 102, 0.15));
  border: 1px solid rgba(37, 211, 102, 0.4);
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  font-family: "Inter", system-ui, sans-serif;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.2);
  position: relative;
  overflow: hidden;
}

.btn-whatsapp::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.btn-whatsapp:hover::before {
  left: 100%;
}

.btn-whatsapp svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.btn-whatsapp:hover,
.btn-whatsapp:focus-visible {
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.3), rgba(37, 211, 102, 0.25));
  border-color: rgba(37, 211, 102, 0.6);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.3);
  outline: none;
}

.btn-whatsapp:active {
  transform: translateY(0);
}

/* Section Title */
.section-title {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 600;
  color: #fff;
  margin: 0 0 32px;
  text-align: center;
}

/* Equipment Block */
.equipment-block {
  margin-top: 80px;
  margin-bottom: 80px;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s cubic-bezier(0.4, 0, 0.2, 1), transform 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}

.equipment-block.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.equipment-block.is-visible .equipment-card {
  animation: cardFadeIn 0.6s ease forwards;
  opacity: 0;
}

.equipment-block.is-visible .equipment-card:nth-child(1) { animation-delay: 0.1s; }
.equipment-block.is-visible .equipment-card:nth-child(2) { animation-delay: 0.2s; }
.equipment-block.is-visible .equipment-card:nth-child(3) { animation-delay: 0.3s; }
.equipment-block.is-visible .equipment-card:nth-child(4) { animation-delay: 0.4s; }
.equipment-block.is-visible .equipment-card:nth-child(5) { animation-delay: 0.5s; }
.equipment-block.is-visible .equipment-card:nth-child(6) { animation-delay: 0.6s; }
.equipment-block.is-visible .equipment-card:nth-child(7) { animation-delay: 0.7s; }

@keyframes cardFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.equipment-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 32px;
}

.equipment-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 24px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease, opacity 0.6s ease, transform 0.6s ease;
  text-align: center;
}

.equipment-card:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.equipment-card--full {
  grid-column: 1 / -1;
}

.equipment-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
  text-align: center;
}

.equipment-value {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  line-height: 1.4;
  text-align: center;
}

/* Pricing Block */
.pricing-block {
  margin-top: 80px;
  margin-bottom: 80px;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s cubic-bezier(0.4, 0, 0.2, 1), transform 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}

.pricing-block.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.pricing-block.is-visible .pricing-card {
  animation: cardSlideIn 0.5s ease forwards;
  opacity: 0;
}

.pricing-block.is-visible .pricing-card:nth-child(1) { animation-delay: 0.1s; }
.pricing-block.is-visible .pricing-card:nth-child(2) { animation-delay: 0.2s; }
.pricing-block.is-visible .pricing-card:nth-child(3) { animation-delay: 0.3s; }
.pricing-block.is-visible .pricing-card:nth-child(4) { animation-delay: 0.4s; }
.pricing-block.is-visible .pricing-card:nth-child(5) { animation-delay: 0.5s; }

@keyframes cardSlideIn {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.pricing-tabs {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.pricing-tab {
  padding: 12px 24px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-pill);
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.pricing-tab:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.4);
}

.pricing-tab.active {
  background: rgba(236, 139, 208, 0.2);
  border-color: rgba(236, 139, 208, 0.4);
  color: #fff;
}

.pricing-panel {
  display: none;
}

.pricing-panel.active {
  display: block;
}

.pricing-subtitle {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin: 0 0 24px;
  text-align: center;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 24px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.pricing-card:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.pricing-card--accent {
  background: linear-gradient(135deg, rgba(236, 139, 208, 0.15), rgba(156, 123, 255, 0.15));
  border-color: rgba(236, 139, 208, 0.3);
}

.pricing-card--accent:hover {
  background: linear-gradient(135deg, rgba(236, 139, 208, 0.25), rgba(156, 123, 255, 0.25));
  border-color: rgba(236, 139, 208, 0.5);
}

.pricing-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.pricing-card-name {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
}

.pricing-card-price {
  font-size: 20px;
  font-weight: 700;
  color: var(--accent);
}

.pricing-card-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  text-align: center;
}

.pricing-table-wrapper {
  overflow-x: auto;
  margin-bottom: 40px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 500px;
}

.pricing-table tbody tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.2s ease;
}

.pricing-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.05);
}

.pricing-table tbody tr:last-child {
  border-bottom: none;
}

.pricing-table td {
  padding: 16px 20px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
}

.pricing-table td:first-child {
  color: rgba(255, 255, 255, 0.9);
}

.pricing-table td:last-child {
  text-align: right;
  font-weight: 600;
  color: var(--accent);
  white-space: nowrap;
}

.pricing-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

/* Plasma Cards */
.plasma-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.plasma-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 28px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  text-align: center;
}

.plasma-card:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.plasma-duration {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
  text-align: center;
}

.plasma-name {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  line-height: 1.6;
  margin-bottom: 16px;
  text-align: center;
}

.plasma-price {
  font-size: 24px;
  font-weight: 700;
  color: var(--accent-strong);
  text-align: center;
}

/* Preparation Block */
.preparation-block {
  margin-top: 80px;
  margin-bottom: 80px;
  text-align: center;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s cubic-bezier(0.4, 0, 0.2, 1), transform 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}

.preparation-block.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.preparation-block.is-visible .checklist-item {
  animation: checklistFadeIn 0.5s ease forwards;
  opacity: 0;
}

.preparation-block.is-visible .checklist-item:nth-child(1) { animation-delay: 0.1s; }
.preparation-block.is-visible .checklist-item:nth-child(2) { animation-delay: 0.2s; }
.preparation-block.is-visible .checklist-item:nth-child(3) { animation-delay: 0.3s; }
.preparation-block.is-visible .checklist-item:nth-child(4) { animation-delay: 0.4s; }
.preparation-block.is-visible .checklist-item:nth-child(5) { animation-delay: 0.5s; }
.preparation-block.is-visible .checklist-item:nth-child(6) { animation-delay: 0.6s; }

@keyframes checklistFadeIn {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.checklist {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
}

.checklist-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

.check-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--accent);
  margin-top: 2px;
}

.checklist-item span {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
}

.preparation-cta {
  text-align: center;
}

/* Contacts Block */
.contacts-block {
  margin-bottom: 80px;
  text-align: center;
}

.contacts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.contact-card:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.contact-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: var(--accent);
  margin-top: 4px;
}

.contact-info {
  flex: 1;
}

.contact-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.contact-value {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  line-height: 1.5;
  display: block;
  transition: color 0.3s ease;
}

.contact-value:hover {
  color: var(--accent);
}

.contacts-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

.map-block {
  margin-top: 40px;
}

.map-block iframe {
  width: 100%;
  max-width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

/* Buttons */
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-1px);
}

.btn-large {
  padding: 16px 32px;
  font-size: 16px;
  min-width: 200px;
}

/* Responsive */
@media (max-width: 900px) {
  .page-section {
    padding: 40px 0;
  }

  .equipment-cards,
  .pricing-cards,
  .plasma-cards {
    grid-template-columns: 1fr;
  }

  .contacts-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .page-hero {
    padding: 40px 0 30px;
  }

  .pricing-tabs {
    width: 100%;
  }

  .pricing-tab {
    flex: 1;
    min-width: 0;
  }

  .pricing-table-wrapper {
    margin-left: -16px;
    margin-right: -16px;
    border-radius: 0;
  }

  .pricing-table {
    min-width: 100%;
  }

  .pricing-table td {
    padding: 12px 16px;
    font-size: 14px;
  }

  .pricing-cta,
  .contacts-cta {
    flex-direction: column;
  }

  .btn-primary,
  .btn-ghost,
  .btn-secondary {
    width: 100%;
  }

  .map-block iframe {
    height: 300px;
  }

  .feature-block-wrapper {
    width: 100%;
    padding: 24px 16px;
  }

  .feature-block {
    width: 100%;
    margin: 0;
    padding: 0;
  }

  .feature-block-content {
    padding: 28px 20px;
  }

  .feature-lead,
  .feature-text,
  .feature-cta-text {
    font-size: 16px;
  }
}
