/* =========================================================
   find-place.com — Дизайн система "Digital Foundation"
   ========================================================= */

:root {
  --color-bg: #0B0E1A;
  --color-bg-alt: #10142A;
  --color-surface: #161B33;
  --color-surface-border: #262C4A;
  --color-text: #F5F6FA;
  --color-text-muted: #9298B5;
  --color-accent: #3ECF8E;
  --color-accent-hover: #34B87C;
  --color-accent-bright: #4AFFA3;
  --color-accent-bright-hover: #33E88C;
  --color-gradient-1: #FF7A45;
  --color-gradient-2: #E84E9C;
  --color-gradient-3: #7B5CFA;
  --color-gradient-4: #3E7BFA;

  --card-gradient: linear-gradient(135deg, #2A1E45 0%, #17141F 60%, #121218 100%);
  --card-gradient-pricing: linear-gradient(135deg, #33224F 0%, #18141F 60%, #121218 100%);
  --card-gradient-stat: linear-gradient(135deg, #251C3D 0%, #16131E 60%, #121218 100%);

  --neon-green: #4AFFA3;
  --neon-pink: #FF2E9A;
  --neon-blue: #2E9BFF;
  --neon-orange: #FF7A1A;

  --font-heading: "Space Grotesk", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;

  --container: 1200px;
  --header-h: 76px;

  --shadow-card: 0 10px 30px -12px rgba(0, 0, 0, 0.5);
  --shadow-hover: 0 18px 40px -14px rgba(0, 0, 0, 0.6);

  --transition: 220ms cubic-bezier(.4,0,.2,1);
}

/* -------------------- Reset -------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body, h1, h2, h3, h4, p, ul, ol, figure { margin: 0; }
ul, ol { padding: 0; list-style: none; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
input, textarea { font: inherit; color: inherit; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

body {
  background: linear-gradient(135deg, #2A1E45 0%, #1A1628 35%, #121218 70%, #0B0B0D 100%);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.15;
}

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

@media (min-width: 768px) {
  .container { padding-inline: 32px; }
}

section { position: relative; }

.section-pad { padding-block: clamp(36px, 5vw, 68px); }
.bg-alt { background: transparent; }

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  text-align: center;
  margin-bottom: 12px;
}
.section-subtitle {
  text-align: center;
  color: var(--color-text-muted);
  max-width: 620px;
  margin-inline: auto;
  margin-bottom: 32px;
  font-size: clamp(15px, 1.6vw, 18px);
}

.skip-link {
  position: absolute; top: -100px; left: 12px; z-index: 200;
  background: var(--color-accent); color: #06110c; padding: 10px 16px;
  border-radius: var(--radius-sm); transition: top var(--transition);
  font-weight: 600;
}
.skip-link:focus { top: 12px; }

:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}

/* -------------------- Buttons -------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--color-accent-bright);
  color: #06170f;
  box-shadow: 0 8px 24px -8px rgba(74, 255, 163, 0.55);
}
.btn-primary:hover { background: var(--color-accent-bright-hover); }

.btn-outline {
  background: transparent;
  border: 1.5px solid rgba(245, 246, 250, 0.35);
  color: var(--color-text);
}
.btn-outline:hover { border-color: var(--color-text); background: rgba(245,246,250,0.06); }

.btn-block { width: 100%; }

/* -------------------- Glow / Neon aura --------------------
   Тънък, ясен неонов контур (не размазан облак): лека цветна рамка + компактно
   сияние с малък blur/spread. Всеки елемент избира цвят чрез --glow-rgb (r, g, b),
   зададен от .glow-* модификатор — за разнообразие по целия сайт, не само зелено.
   Важно: .glow-* модификаторите стоят СЛЕД .btn-glow в кода, за да печелят
   каскадата (еднаква специфичност, а по-късно правило = по-висок приоритет). */
.btn-glow {
  --glow-rgb: 74, 255, 163;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition);
}
.glow-green  { --glow-rgb: 74, 255, 163; }
.glow-blue   { --glow-rgb: 46, 155, 255; }
.glow-purple { --glow-rgb: 123, 92, 250; }
.glow-pink   { --glow-rgb: 255, 46, 154; }
.btn-glow.btn-primary {
  border: 1.5px solid rgba(var(--glow-rgb), 0.65);
  box-shadow:
    0 6px 16px -10px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(var(--glow-rgb), 0.24),
    0 0 22px 2px rgba(var(--glow-rgb), 0.65);
}
.btn-glow.btn-primary:hover,
.btn-glow.btn-primary:focus-visible {
  box-shadow:
    0 6px 16px -10px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(var(--glow-rgb), 0.35),
    0 0 30px 4px rgba(var(--glow-rgb), 0.95);
}
.btn-glow.btn-outline {
  border-color: rgba(var(--glow-rgb), 0.65);
  box-shadow: 0 0 14px 0px rgba(var(--glow-rgb), 0.4);
}
.btn-glow.btn-outline:hover,
.btn-glow.btn-outline:focus-visible {
  border-color: rgba(var(--glow-rgb), 0.9);
  background: rgba(var(--glow-rgb), 0.08);
  box-shadow: 0 0 22px 2px rgba(var(--glow-rgb), 0.65);
}

/* -------------------- Header -------------------- */
.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(11, 14, 26, 0.35);
  transition: background var(--transition), border-color var(--transition), backdrop-filter var(--transition);
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(11, 14, 26, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--color-surface-border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 19px;
}
.brand-mark {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: var(--color-accent-bright);
  color: #06170f;
  border-radius: 10px;
  font-weight: 800;
  font-size: 18px;
  border: 1.5px solid rgba(74, 255, 163, 0.7);
  box-shadow: 0 0 10px 0px rgba(74, 255, 163, 0.6);
}
.brand-logo-img { width: 36px; height: 36px; border-radius: 10px; object-fit: cover; }

.nav-desktop {
  display: none;
}
.nav-desktop ul {
  display: flex;
  gap: 2px;
  align-items: center;
  background: rgba(245, 246, 250, 0.03);
  border: 1px solid var(--color-surface-border);
  border-radius: 999px;
  padding: 5px;
}
.nav-desktop a {
  display: inline-block;
  font-size: 14px;
  color: var(--color-text-muted);
  padding: 8px 15px;
  border-radius: 999px;
  transition: color var(--transition), background var(--transition), text-shadow var(--transition);
  position: relative;
}
.nav-desktop a:hover,
.nav-desktop a:focus-visible {
  color: var(--color-accent-bright);
  background: rgba(74, 255, 163, 0.1);
  text-shadow: 0 0 10px rgba(74, 255, 163, 0.85), 0 0 22px rgba(74, 255, 163, 0.5);
}

.header-cta { display: none; }

.nav-toggle {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 10px;
}
.nav-toggle:hover { background: rgba(245,246,250,0.08); }
.nav-toggle span, .nav-toggle::before, .nav-toggle::after {
  content: ""; display: block; position: absolute;
  width: 22px; height: 2px; background: var(--color-text);
  transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle { position: relative; }
.nav-toggle span { position: absolute; }
.nav-toggle::before { transform: translateY(-7px); }
.nav-toggle::after { transform: translateY(7px); }
.nav-toggle span { transform: translateY(0); }

.nav-toggle[aria-expanded="true"]::before { transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"]::after { transform: rotate(-45deg); }
.nav-toggle[aria-expanded="true"] span { opacity: 0; }

.mobile-nav {
  position: fixed;
  inset: 0;
  top: var(--header-h);
  background: var(--color-bg);
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  transform: translateY(-12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition);
}
.mobile-nav.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.mobile-nav a {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 600;
  transition: color var(--transition), text-shadow var(--transition);
}
.mobile-nav a:hover,
.mobile-nav a:focus-visible,
.mobile-nav a:active {
  color: var(--color-accent-bright);
  text-shadow: 0 0 14px rgba(74, 255, 163, 0.85), 0 0 30px rgba(74, 255, 163, 0.5);
}
.mobile-nav .btn { margin-top: 12px; }

@media (min-width: 1024px) {
  .nav-desktop { display: block; }
  .header-cta { display: inline-flex; }
  .nav-toggle { display: none; }
  .mobile-nav { display: none; }
}

/* -------------------- Hero -------------------- */
.hero {
  position: relative;
  padding-top: calc(var(--header-h) + 40px);
  padding-bottom: 64px;
  overflow: hidden;
  background: transparent;
}
.hero-mesh {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(70% 60% at 85% 8%, rgba(255,122,69,0.55) 0%, rgba(255,122,69,0) 60%),
    radial-gradient(65% 55% at 100% 30%, rgba(232,78,156,0.5) 0%, rgba(232,78,156,0) 60%),
    radial-gradient(70% 65% at 90% 55%, rgba(123,92,250,0.45) 0%, rgba(123,92,250,0) 65%),
    radial-gradient(80% 70% at 70% 85%, rgba(62,123,250,0.4) 0%, rgba(62,123,250,0) 65%),
    linear-gradient(180deg, transparent 0%, rgba(11,11,13,0.85) 92%);
  filter: blur(6px);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 48px;
  align-items: center;
}
.hero-title {
  font-size: clamp(30px, 5.2vw, 54px);
  text-transform: uppercase;
  max-width: 16ch;
}
.hero-subtitle {
  margin-top: 20px;
  color: var(--color-text-muted);
  font-size: clamp(16px, 1.8vw, 19px);
  max-width: 46ch;
}
.hero-actions {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.hero-actions .btn { width: 100%; }

.hero-visual { position: relative; }
.hero-visual img { width: 100%; height: auto; }

@media (min-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr 1fr; }
  .hero-actions { flex-direction: row; }
  .hero-actions .btn { width: auto; }
}

/* -------------------- Cards genéricas -------------------- */
.card {
  --glow-rgb: 123, 92, 250;
  background: var(--card-gradient);
  border: 1px solid rgba(var(--glow-rgb), 0.35);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: 0 0 12px 0px rgba(var(--glow-rgb), 0.28);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.card:hover {
  transform: translateY(-4px);
  border-color: rgba(var(--glow-rgb), 0.6);
  box-shadow: var(--shadow-hover), 0 0 20px 1px rgba(var(--glow-rgb), 0.5);
}
.card-icon {
  width: 92px; height: 92px;
  display: flex; align-items: center; justify-content: center;
  background: var(--color-bg);
  border-radius: 18px;
  margin-bottom: 20px;
  border: 1.5px solid rgba(var(--glow-rgb), 0.5);
  box-shadow: 0 0 14px 0px rgba(var(--glow-rgb), 0.45);
  transition: box-shadow var(--transition), border-color var(--transition);
}
.card:hover .card-icon { border-color: rgba(var(--glow-rgb), 0.85); }
.card-icon img { width: 60px; height: 60px; }
.card h3 { font-size: 19px; margin-bottom: 8px; }
.card p { color: var(--color-text-muted); font-size: 15px; }

/* Цвят на сиянието спрямо иконата на всяка карта (услуги/проблем) */
.card[data-icon="search-color"]    { --glow-rgb: 74, 255, 163; }
.card[data-icon="google-rating"]   { --glow-rgb: 66, 133, 244; }
.card[data-icon="social-quad-alt"] { --glow-rgb: 255, 46, 154; }
.card[data-icon="code-window"]     { --glow-rgb: 46, 155, 255; }
.card[data-icon="google-pin"]      { --glow-rgb: 66, 133, 244; }
.card[data-icon="social-quad"]     { --glow-rgb: 255, 46, 154; }
.card[data-icon="calendar-color"]  { --glow-rgb: 255, 122, 26; }
.card[data-icon="google-ads"]      { --glow-rgb: 66, 133, 244; }
.card[data-icon="seo-badge"]       { --glow-rgb: 74, 255, 163; }
.card[data-icon="stars-rating"]    { --glow-rgb: 255, 197, 66; }
.card[data-icon="email-color"]     { --glow-rgb: 46, 155, 255; }
.card[data-icon="diploma"]         { --glow-rgb: 255, 46, 154; }
.card[data-icon="photo-edit"]      { --glow-rgb: 255, 197, 66; }
.card[data-icon="video-camera"]    { --glow-rgb: 123, 92, 250; }
.card[data-icon="branding"]        { --glow-rgb: 255, 122, 26; }
/* Стари/резервни ключове, все още избираеми в админ панела */
.card[data-icon="search"]   { --glow-rgb: 74, 255, 163; }
.card[data-icon="google"]   { --glow-rgb: 66, 133, 244; }
.card[data-icon="clock"]    { --glow-rgb: 123, 92, 250; }
.card[data-icon="code"]     { --glow-rgb: 46, 155, 255; }
.card[data-icon="social"]   { --glow-rgb: 255, 46, 154; }
.card[data-icon="calendar"] { --glow-rgb: 255, 122, 26; }
.card[data-icon="ads"]      { --glow-rgb: 66, 133, 244; }
.card[data-icon="blog"]     { --glow-rgb: 74, 255, 163; }
.card[data-icon="review"]   { --glow-rgb: 255, 197, 66; }
.card[data-icon="email"]    { --glow-rgb: 46, 155, 255; }
.card[data-icon="training"] { --glow-rgb: 255, 46, 154; }

/* -------------------- Проблем -------------------- */
.problem-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .problem-grid { grid-template-columns: repeat(3, 1fr); }
}

/* -------------------- Фоново сияние на секции (ambient) -------------------- */
#services, #pricing, #results { overflow: hidden; }
#services::before, #pricing::before, #results::before {
  content: "";
  position: absolute;
  z-index: 0;
  pointer-events: none;
  filter: blur(90px);
  border-radius: 50%;
}
#services::before {
  top: -8%; right: -6%; width: 46%; height: 55%;
  background: radial-gradient(circle, rgba(62, 123, 250, 0.16) 0%, rgba(62, 123, 250, 0) 70%);
}
#pricing::before {
  top: -6%; left: -8%; width: 42%; height: 50%;
  background: radial-gradient(circle, rgba(232, 78, 156, 0.15) 0%, rgba(232, 78, 156, 0) 70%);
}
#results::before {
  bottom: -10%; right: -6%; width: 38%; height: 48%;
  background: radial-gradient(circle, rgba(62, 207, 142, 0.15) 0%, rgba(62, 207, 142, 0) 70%);
}
#services > .container, #pricing > .container, #results > .container {
  position: relative;
  z-index: 1;
}

/* -------------------- Услуги -------------------- */
.services-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

/* -------------------- Как работим -------------------- */
.process-list {
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr;
  counter-reset: step;
  position: relative;
}
.process-step {
  position: relative;
  padding-left: 68px;
}
.process-step-num {
  position: absolute;
  left: 0; top: 0;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--color-surface);
  border: 1.5px solid rgba(74, 255, 163, 0.6);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-accent-bright);
  box-shadow: 0 0 14px 0px rgba(74, 255, 163, 0.55);
  transition: box-shadow var(--transition), border-color var(--transition);
}
.process-step:hover .process-step-num,
.process-step:focus-within .process-step-num {
  border-color: rgba(74, 255, 163, 0.95);
  box-shadow: 0 0 22px 2px rgba(74, 255, 163, 0.85);
}
.process-step h3 { font-size: 18px; margin-bottom: 6px; }
.process-step p { color: var(--color-text-muted); font-size: 15px; }

@media (min-width: 1024px) {
  .process-list {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
  .process-list::before {
    content: "";
    position: absolute;
    top: 24px;
    left: 8%;
    right: 8%;
    height: 1px;
    background: var(--color-surface-border);
  }
  .process-step { padding-left: 0; padding-top: 68px; text-align: left; }
  .process-step-num { left: 0; }
}

/* -------------------- Цени -------------------- */
.pricing-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
  max-width: 880px;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
}
.pricing-card {
  position: relative;
  background: var(--card-gradient-pricing);
  border: 1px solid var(--color-surface-border);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border-color: rgba(123, 92, 250, 0.4);
  box-shadow: var(--shadow-card), 0 0 14px 0px rgba(123, 92, 250, 0.35);
  transition: box-shadow var(--transition), border-color var(--transition), transform var(--transition);
}
.pricing-card:hover {
  transform: translateY(-4px);
  border-color: rgba(123, 92, 250, 0.65);
  box-shadow: var(--shadow-hover), 0 0 24px 1px rgba(123, 92, 250, 0.55);
}
.pricing-card.is-highlighted {
  border-color: rgba(62, 207, 142, 0.7);
  box-shadow: 0 0 0 1px rgba(62, 207, 142, 0.55), var(--shadow-card), 0 0 16px 0px rgba(62, 207, 142, 0.4);
}
.pricing-card.is-highlighted:hover {
  box-shadow: 0 0 0 1px rgba(62, 207, 142, 0.8), var(--shadow-hover), 0 0 26px 2px rgba(62, 207, 142, 0.6);
}
.pricing-badge {
  position: absolute;
  top: 18px;
  right: -34px;
  transform: rotate(38deg);
  background: linear-gradient(90deg, var(--neon-pink), #FF5CB8);
  color: #ffffff;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 6px 40px;
  box-shadow: 0 0 20px 2px rgba(255, 46, 154, 0.8);
}
.pricing-card.is-highlighted .pricing-badge {
  background: linear-gradient(90deg, var(--neon-orange), #FFA53D);
  color: #1a0e08;
  box-shadow: 0 0 20px 2px rgba(255, 122, 26, 0.8);
}
.pricing-name { font-size: 22px; margin-bottom: 14px; }
.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-family: var(--font-heading);
}
.pricing-price .amount { font-size: clamp(38px, 5vw, 48px); color: var(--color-accent); font-weight: 700; }
.pricing-price .period { color: var(--color-text-muted); font-size: 16px; }
.pricing-note { color: var(--color-text-muted); font-size: 13px; margin-top: 4px; margin-bottom: 18px; }
.pricing-desc { color: var(--color-text-muted); margin-bottom: 22px; font-size: 15px; }
.pricing-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; flex: 1; }
.pricing-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; }
.pricing-features img { width: 18px; height: 18px; margin-top: 2px; flex-shrink: 0; }

/* -------------------- Резултати -------------------- */
.results-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .results-grid { grid-template-columns: repeat(3, 1fr); }
}
.stat-card {
  --glow-rgb: 62, 207, 142;
  background: var(--card-gradient-stat);
  border: 1px solid rgba(var(--glow-rgb), 0.35);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 0 14px 0px rgba(var(--glow-rgb), 0.3);
  transition: box-shadow var(--transition), border-color var(--transition), transform var(--transition);
}
.stat-card:hover {
  transform: translateY(-3px);
  border-color: rgba(var(--glow-rgb), 0.65);
  box-shadow: 0 0 22px 1px rgba(var(--glow-rgb), 0.55);
}
.results-grid .stat-card:nth-child(2) { --glow-rgb: 62, 123, 250; }
.results-grid .stat-card:nth-child(3) { --glow-rgb: 123, 92, 250; }
.stat-value {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 38px);
  color: rgb(var(--glow-rgb, 62, 207, 142));
  font-weight: 700;
  margin-bottom: 8px;
}
.stat-label { color: var(--color-text-muted); font-size: 15px; }

/* -------------------- FAQ + Контактна форма — едно до друго, подравнени -------------------- */
.faq-contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 1024px) {
  .faq-contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: stretch;
  }
}
.faq-column, .contact-column {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.faq-column .glow-panel,
.contact-column .glow-panel {
  max-width: none;
  margin-inline: 0;
  flex: 1;
}
.contact-panel-text {
  color: var(--color-text-muted);
  margin-bottom: 22px;
  font-size: 15px;
}

/* -------------------- Самостоятелни glow панели (FAQ / Контактна форма) --------------------
   Всяка секция е напълно самостоятелна, на цяла ширина, със собствен контейнер и
   собствен glow — различен по позиция/интензитет, за да не изглеждат като едно цяло. */
.glow-panel {
  background: var(--color-surface);
  border: 1px solid var(--color-surface-border);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 44px);
  max-width: 780px;
  margin-inline: auto;
  transition: box-shadow 280ms ease, border-color 280ms ease;
}
.glow-panel-faq {
  border-color: rgba(123, 92, 250, 0.4);
  box-shadow: -8px -8px 34px -10px rgba(123, 92, 250, 0.22), var(--shadow-card);
}
.glow-panel-faq:hover,
.glow-panel-faq:focus-within {
  border-color: rgba(123, 92, 250, 0.75);
  box-shadow: -8px -8px 34px -10px rgba(123, 92, 250, 0.4), 0 0 46px 6px rgba(123, 92, 250, 0.3), var(--shadow-card);
}
.glow-panel-contact {
  border-color: rgba(46, 155, 255, 0.4);
  box-shadow: 10px 10px 42px -8px rgba(46, 155, 255, 0.28), var(--shadow-card);
}
.glow-panel-contact:hover,
.glow-panel-contact:focus-within {
  border-color: rgba(46, 155, 255, 0.75);
  box-shadow: 10px 10px 42px -8px rgba(46, 155, 255, 0.48), 0 0 50px 7px rgba(46, 155, 255, 0.32), var(--shadow-card);
}
.contact-panel { max-width: 620px; }

/* -------------------- FAQ -------------------- */
.faq-list { }
.faq-item {
  border-bottom: 1px solid var(--color-surface-border);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 4px;
  text-align: left;
  font-family: var(--font-heading);
  font-size: clamp(16px, 2vw, 18px);
  font-weight: 600;
}
.faq-icon {
  flex-shrink: 0;
  width: 22px; height: 22px;
  transition: transform var(--transition);
}
.faq-item[data-open="true"] .faq-icon { transform: rotate(180deg); }
.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height var(--transition);
}
.faq-answer p { padding: 0 4px 22px; color: var(--color-text-muted); font-size: 15px; }

/* -------------------- Footer -------------------- */
.site-footer {
  background: transparent;
  padding-block: 40px 20px;
}
.footer-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr;
  text-align: center;
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: repeat(3, 1fr); gap: 32px; }
}
.footer-col h4 {
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-text-muted);
  margin-bottom: 18px;
}
.footer-col p { color: var(--color-text-muted); font-size: 14px; }
.footer-col ul { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.footer-col a { color: var(--color-text-muted); font-size: 14px; transition: color var(--transition); }
.footer-col a:hover { color: var(--color-text); }
.footer-brand { display: flex; align-items: center; justify-content: center; gap: 10px; margin-bottom: 14px; }
.footer-social { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
.footer-social a {
  --glow-rgb: 123, 92, 250;
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  background: var(--color-surface);
  border: 1px solid rgba(var(--glow-rgb), 0.4);
  border-radius: 10px;
  box-shadow: 0 0 10px 0px rgba(var(--glow-rgb), 0.4);
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}
.footer-social a:hover {
  transform: translateY(-2px);
  border-color: rgba(var(--glow-rgb), 0.7);
  box-shadow: 0 0 18px 1px rgba(var(--glow-rgb), 0.65);
}
.footer-social img { width: 18px; height: 18px; }
.footer-social a[data-platform="facebook"]  { --glow-rgb: 24, 119, 242; }
.footer-social a[data-platform="linkedin"]  { --glow-rgb: 10, 102, 194; }
.footer-social a[data-platform="instagram"] { --glow-rgb: 214, 36, 159; }
.footer-social a[data-platform="youtube"]   { --glow-rgb: 255, 0, 0; }
.footer-social a[data-platform="twitter"]   { --glow-rgb: 245, 246, 250; }
.footer-bottom {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid var(--color-surface-border);
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: var(--color-text-muted);
  font-size: 13px;
}
@media (min-width: 768px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}
.footer-legal { display: flex; gap: 18px; }

/* -------------------- Контактна форма -------------------- */
.form-field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.form-field label { font-size: 14px; color: var(--color-text-muted); }
.form-field input, .form-field textarea {
  background: var(--color-surface);
  border: 1px solid var(--color-surface-border);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  min-height: 48px;
}
.form-field textarea { min-height: 120px; resize: vertical; }
.form-field input:focus, .form-field textarea:focus { border-color: var(--color-accent); }
.form-status { margin-top: 14px; font-size: 14px; }
.form-status[data-state="success"] { color: var(--color-accent); }
.form-status[data-state="error"] { color: #ff6b6b; }

/* -------------------- Floating action button -------------------- */
.fab-container {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 150;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}
.fab-item {
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  transform: translateY(10px) scale(0.9);
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition);
}
.fab-container.is-open .fab-item {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.fab-item:nth-child(1) { transition-delay: 40ms; }
.fab-item:nth-child(2) { transition-delay: 80ms; }
.fab-item:nth-child(3) { transition-delay: 120ms; }
.fab-item:nth-child(4) { transition-delay: 160ms; }

.fab-label {
  background: var(--color-surface);
  border: 1px solid var(--color-surface-border);
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 13px;
  white-space: nowrap;
  box-shadow: var(--shadow-card);
}
.fab-btn {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 20px -6px rgba(0,0,0,0.5);
  flex-shrink: 0;
  border: 1.5px solid transparent;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}
.fab-btn:hover,
.fab-btn:focus-visible { transform: translateY(-2px) scale(1.05); }
.fab-btn img { width: 22px; height: 22px; }
.fab-whatsapp { background: #25D366; border-color: rgba(37, 211, 102, 0.7); box-shadow: 0 8px 16px -8px rgba(0,0,0,0.5), 0 0 12px 0px rgba(37, 211, 102, 0.65); }
.fab-viber    { background: #7360F2; border-color: rgba(115, 96, 242, 0.7); box-shadow: 0 8px 16px -8px rgba(0,0,0,0.5), 0 0 12px 0px rgba(115, 96, 242, 0.65); }
.fab-telegram { background: #2AABEE; border-color: rgba(42, 171, 238, 0.7); box-shadow: 0 8px 16px -8px rgba(0,0,0,0.5), 0 0 12px 0px rgba(42, 171, 238, 0.65); }
.fab-call     { background: #3E7BFA; border-color: rgba(62, 123, 250, 0.7); box-shadow: 0 8px 16px -8px rgba(0,0,0,0.5), 0 0 12px 0px rgba(62, 123, 250, 0.65); }
.fab-whatsapp:hover { box-shadow: 0 8px 16px -8px rgba(0,0,0,0.5), 0 0 20px 2px rgba(37, 211, 102, 0.9); }
.fab-viber:hover    { box-shadow: 0 8px 16px -8px rgba(0,0,0,0.5), 0 0 20px 2px rgba(115, 96, 242, 0.9); }
.fab-telegram:hover { box-shadow: 0 8px 16px -8px rgba(0,0,0,0.5), 0 0 20px 2px rgba(42, 171, 238, 0.9); }
.fab-call:hover     { box-shadow: 0 8px 16px -8px rgba(0,0,0,0.5), 0 0 20px 2px rgba(62, 123, 250, 0.9); }

.fab-main {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--color-accent-bright);
  border: 1.5px solid rgba(74, 255, 163, 0.7);
  color: #06170f;
  display: flex; align-items: center; justify-content: center;
  box-shadow:
    0 8px 18px -8px rgba(0, 0, 0, 0.55),
    0 0 16px 1px rgba(74, 255, 163, 0.75);
  transition: transform var(--transition), background var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.fab-main:hover,
.fab-main:focus-visible {
  background: var(--color-accent-bright-hover);
  border-color: rgba(74, 255, 163, 1);
  box-shadow:
    0 8px 18px -8px rgba(0, 0, 0, 0.55),
    0 0 26px 3px rgba(74, 255, 163, 0.95);
}
.fab-main svg { width: 24px; height: 24px; transition: transform var(--transition); }
.fab-container.is-open .fab-main svg { transform: rotate(45deg); }

/* -------------------- Translate banner -------------------- */
.translate-banner {
  position: fixed;
  top: 0; inset-inline: 0;
  z-index: 200;
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-surface-border);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 14px;
  transform: translateY(-100%);
  transition: transform var(--transition);
}
.translate-banner.is-visible { transform: translateY(0); }
.translate-banner button { text-decoration: underline; }
.translate-banner .close-banner { text-decoration: none; opacity: .7; }

/* -------------------- Scroll-reveal animations -------------------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* -------------------- Правни страници (Общи условия / Поверителност) -------------------- */
.legal-page {
  padding-top: calc(var(--header-h) + 48px);
  padding-bottom: 80px;
  max-width: 820px;
}
.legal-page h1 {
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 8px;
}
.legal-updated {
  color: var(--color-text-muted);
  font-size: 14px;
  margin-bottom: 40px;
}
.legal-body h2 {
  font-family: var(--font-heading);
  font-size: clamp(19px, 2.4vw, 23px);
  margin-top: 40px;
  margin-bottom: 12px;
  color: var(--color-accent-bright);
}
.legal-body h2:first-child { margin-top: 0; }
.legal-body p { color: var(--color-text-muted); margin-bottom: 16px; }
.legal-body ul { margin: 0 0 16px; padding-left: 0; }
.legal-body li {
  color: var(--color-text-muted);
  list-style: none;
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
}
.legal-body li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--color-accent-bright);
}
.legal-body a { color: var(--color-accent-bright); text-decoration: underline; }
.legal-body strong, .legal-body b { color: var(--color-text); }
.legal-back { margin-top: 24px; }
.legal-footer { padding-block: 24px; }
.legal-footer .footer-bottom { border-top: none; margin-top: 0; padding-top: 0; }

/* -------------------- Cookie съгласие -------------------- */
.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 180;
  max-width: 380px;
  background: var(--card-gradient);
  border: 1px solid rgba(74, 255, 163, 0.4);
  border-radius: var(--radius-md);
  padding: 20px 22px;
  box-shadow: 0 0 24px 2px rgba(74, 255, 163, 0.18), var(--shadow-card);
  transform: translateY(140%);
  opacity: 0;
  transition: transform 400ms ease, opacity 400ms ease;
}
.cookie-banner.is-visible { transform: translateY(0); opacity: 1; }
.cookie-banner p {
  font-size: 14px;
  color: var(--color-text-muted);
  margin-bottom: 16px;
  line-height: 1.5;
}
.cookie-banner a { color: var(--color-accent-bright); text-decoration: underline; }
.cookie-banner-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-banner-actions .btn { min-height: 44px; padding: 10px 18px; font-size: 14px; }
@media (max-width: 480px) {
  .cookie-banner { left: 12px; right: 12px; bottom: 12px; max-width: none; }
}
