/* ==========================================================================
   Парти Мечка / Гига Мечо — Варна
   Дизайн система. Цветовете са запазени от оригиналния сайт.
   ========================================================================== */

:root {
  /* Марка — наследени цветове */
  --pink: #f442a1;
  --pink-dark: #dd0d7c;
  --pink-light: #f773b9;
  --coral: #e36159;
  --cream: #f9f1e9;
  --yellow: #f9c23c;
  --ink: #1d2127;

  /* Неутрални */
  --white: #ffffff;
  --gray-50: #faf8f7;
  --gray-100: #f2eeec;
  --gray-300: #d8d1cd;
  --gray-500: #8a807b;
  --gray-700: #4a433f;

  --bg: var(--white);
  --bg-alt: var(--cream);
  --text: #38322f;
  --heading: var(--ink);
  --border: rgba(29, 33, 39, 0.1);

  /* Типография */
  --font-display: 'Baloo 2', 'Trebuchet MS', system-ui, sans-serif;
  --font-body: 'Manrope', -apple-system, 'Segoe UI', Roboto, sans-serif;

  /* Ритъм */
  --radius: 18px;
  --radius-lg: 28px;
  --radius-pill: 999px;
  --shadow-sm: 0 2px 8px rgba(29, 33, 39, 0.06);
  --shadow: 0 8px 30px rgba(29, 33, 39, 0.1);
  --shadow-lg: 0 20px 60px rgba(244, 66, 161, 0.18);
  --container: 1180px;
  --section-y: clamp(3.5rem, 8vw, 7rem);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme='light']) {
    --bg: #14161a;
    --bg-alt: #1b1e24;
    --text: #d5cfcb;
    --heading: #f6f2ef;
    --white: #14161a;
    --gray-50: #1b1e24;
    --gray-100: #22262d;
    --gray-300: #3a4048;
    --border: rgba(255, 255, 255, 0.12);
    --cream: #1b1e24;
  }
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@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 {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--heading);
  line-height: 1.15;
  margin: 0 0 0.5em;
  font-weight: 800;
  letter-spacing: -0.02em;
  overflow-wrap: break-word;
  hyphens: auto;
}
h1 { font-size: clamp(1.85rem, 5.4vw, 3.9rem); }
h2 { font-size: clamp(1.75rem, 4.2vw, 2.8rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); }
p { margin: 0 0 1.1em; }
a { color: var(--pink-dark); text-decoration-thickness: 2px; text-underline-offset: 3px; }
img { max-width: 100%; height: auto; display: block; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}

section { padding-block: var(--section-y); }
.section--alt { background: var(--bg-alt); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pink-dark);
  background: linear-gradient(90deg, rgba(244,66,161,0.14), rgba(249,194,60,0.14));
  padding: 0.4rem 0.95rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1rem;
}
.eyebrow::before { content: '🎉'; font-size: 0.95rem; }

/* празнични секции с фин фон */
.section--alt {
  position: relative;
  background:
    radial-gradient(700px 380px at 92% 6%, rgba(244,66,161,0.09), transparent 65%),
    radial-gradient(560px 320px at 4% 94%, rgba(249,194,60,0.11), transparent 62%),
    var(--bg-alt);
}
.section--alt > .container { position: relative; z-index: 1; }

.section-head { max-width: 62ch; margin-bottom: clamp(2rem, 5vw, 3.5rem); }
.section-head p { font-size: 1.1rem; color: var(--gray-500); margin-bottom: 0; }
.section-head--center { margin-inline: auto; text-align: center; }

/* ---------- Бутони ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1rem;
  line-height: 1;
  padding: 1rem 1.7rem;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
  white-space: nowrap;
  max-width: 100%;
}
@media (max-width: 420px) {
  .btn { white-space: normal; text-align: center; }
}
.btn svg { width: 1.15em; height: 1.15em; flex-shrink: 0; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn:focus-visible { outline: 3px solid var(--pink); outline-offset: 3px; }

.btn--call { background: var(--pink); color: #fff; box-shadow: var(--shadow-lg); }
.btn--call:hover { background: var(--pink-dark); }
.btn--wa { background: #25d366; color: #06301a; }
.btn--wa:hover { background: #1eb959; }
.btn--viber { background: #7360f2; color: #fff; }
.btn--viber:hover { background: #5b48d8; }
.btn--ghost {
  background: transparent;
  color: var(--heading);
  border-color: var(--gray-300);
}
.btn--ghost:hover { border-color: var(--pink); color: var(--pink-dark); }
.btn--lg { padding: 1.15rem 2.1rem; font-size: 1.075rem; }

.btn-row { display: flex; flex-wrap: wrap; gap: 0.85rem; }

/* ---------- Хедър ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 72px;
}
.logo { display: flex; align-items: center; gap: 0.6rem; text-decoration: none; }
.logo img { width: 42px; height: 42px; border-radius: 50%; }
.logo__text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--heading);
  line-height: 1.1;
}
.logo__text span { display: block; font-size: 0.7rem; font-weight: 600; color: var(--gray-500); letter-spacing: 0.06em; }

.nav { display: flex; align-items: center; gap: 1.75rem; }
.nav a {
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  transition: color 0.15s ease;
}
.nav a:hover { color: var(--pink-dark); }
@media (max-width: 900px) { .nav { display: none; } }
.header .btn { padding: 0.75rem 1.3rem; font-size: 0.95rem; }
@media (max-width: 560px) { .header__cta-text { display: none; } .header .btn { padding: 0.75rem 1rem; } }

/* ---------- Герой секция ---------- */
.hero {
  position: relative;
  padding-block: clamp(2.5rem, 7vw, 5.5rem);
  background:
    radial-gradient(1100px 520px at 88% -8%, rgba(244, 66, 161, 0.18), transparent 62%),
    radial-gradient(760px 420px at 5% 105%, rgba(249, 194, 60, 0.2), transparent 60%),
    radial-gradient(600px 400px at 50% 50%, rgba(115, 96, 242, 0.07), transparent 70%),
    var(--bg-alt);
  overflow: hidden;
}

/* --- конфети по фона на героя --- */
.hero::before,
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero::before {
  background-image:
    radial-gradient(circle, var(--pink) 50%, transparent 51%),
    radial-gradient(circle, var(--yellow) 50%, transparent 51%),
    radial-gradient(circle, #7360f2 50%, transparent 51%),
    radial-gradient(circle, #25d366 50%, transparent 51%),
    radial-gradient(circle, var(--coral) 50%, transparent 51%),
    radial-gradient(circle, var(--pink) 50%, transparent 51%);
  background-size: 11px 11px, 9px 9px, 8px 8px, 10px 10px, 7px 7px, 9px 9px;
  background-position: 6% 18%, 17% 62%, 27% 32%, 84% 24%, 92% 68%, 73% 12%;
  background-repeat: no-repeat;
  opacity: 0.55;
}
/* втори пласт конфети за повече плътност */
.hero .confetti-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    radial-gradient(circle, var(--yellow) 50%, transparent 51%),
    radial-gradient(circle, #7360f2 50%, transparent 51%),
    radial-gradient(circle, var(--pink) 50%, transparent 51%),
    linear-gradient(70deg, transparent 46%, #25d366 46% 54%, transparent 54%),
    linear-gradient(-25deg, transparent 46%, var(--pink) 46% 54%, transparent 54%),
    linear-gradient(40deg, transparent 46%, var(--yellow) 46% 54%, transparent 54%),
    radial-gradient(circle, var(--coral) 50%, transparent 51%),
    radial-gradient(circle, #25d366 50%, transparent 51%);
  background-size: 8px 8px, 10px 10px, 6px 6px, 18px 18px, 15px 15px, 20px 20px, 9px 9px, 7px 7px;
  background-position: 44% 90%, 55% 6%, 3% 52%, 96% 14%, 62% 58%, 8% 88%, 48% 26%, 30% 70%;
  background-repeat: no-repeat;
  opacity: 0.4;
}
/* цветни ленти-конфети */
.hero::after {
  background-image:
    linear-gradient(58deg, transparent 46%, var(--yellow) 46% 54%, transparent 54%),
    linear-gradient(-42deg, transparent 46%, var(--pink) 46% 54%, transparent 54%),
    linear-gradient(22deg, transparent 46%, #7360f2 46% 54%, transparent 54%),
    linear-gradient(-68deg, transparent 46%, var(--coral) 46% 54%, transparent 54%);
  background-size: 20px 20px, 17px 17px, 22px 22px, 16px 16px;
  background-position: 11% 78%, 89% 44%, 34% 8%, 66% 86%;
  background-repeat: no-repeat;
  opacity: 0.42;
}
.hero > .container { position: relative; z-index: 1; }

/* --- летящи балони --- */
.balloons {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.balloon {
  position: absolute;
  bottom: -140px;
  width: 34px;
  height: 43px;
  border-radius: 50% 50% 48% 48%;
  opacity: 0.55;
  animation: float-up linear infinite;
}
/* връвчица */
.balloon::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  width: 1px;
  height: 42px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.16), transparent);
}
/* отблясък */
.balloon::before {
  content: '';
  position: absolute;
  top: 18%;
  left: 24%;
  width: 26%;
  height: 20%;
  border-radius: 50%;
  background: rgba(255,255,255,0.55);
}
/* балоните стоят по краищата, за да не пресичат снимката и текста */
.balloon:nth-child(1) { left: 3%;  background: var(--pink);   animation-duration: 19s; animation-delay: 0s;   }
.balloon:nth-child(2) { left: 12%; background: var(--yellow); animation-duration: 24s; animation-delay: -6s;  }
.balloon:nth-child(3) { left: 30%; background: #7360f2;       animation-duration: 21s; animation-delay: -12s; }
.balloon:nth-child(4) { left: 66%; background: var(--coral);  animation-duration: 26s; animation-delay: -3s;  }
.balloon:nth-child(5) { left: 80%; background: #25d366;       animation-duration: 22s; animation-delay: -15s; }
.balloon:nth-child(6) { left: 94%; background: var(--pink);   animation-duration: 28s; animation-delay: -9s;  }

@keyframes float-up {
  0%   { transform: translateY(0) translateX(0) rotate(-4deg); }
  25%  { transform: translateY(-28vh) translateX(14px) rotate(4deg); }
  50%  { transform: translateY(-56vh) translateX(-10px) rotate(-3deg); }
  75%  { transform: translateY(-84vh) translateX(12px) rotate(5deg); }
  100% { transform: translateY(-118vh) translateX(0) rotate(-4deg); }
}
@media (prefers-reduced-motion: reduce) {
  .balloon { animation: none; display: none; }
}
@media (max-width: 700px) {
  .balloon:nth-child(3), .balloon:nth-child(5) { display: none; }
  .balloon { width: 26px; height: 33px; opacity: 0.4; }
}
.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.hero__grid > * { min-width: 0; }
@media (max-width: 940px) { .hero__grid { grid-template-columns: minmax(0, 1fr); } }

.hero h1 { margin-bottom: 0.4em; }
.hero h1 em {
  font-style: normal;
  color: var(--pink);
  display: block;
}
.hero__lead {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--gray-700);
  max-width: 54ch;
  margin-bottom: 1.8rem;
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme='light']) .hero__lead { color: var(--text); }
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
  margin-top: 2rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--border);
}
.trust { display: flex; align-items: center; gap: 0.6rem; font-size: 0.92rem; font-weight: 700; }
.trust svg { width: 1.4rem; height: 1.4rem; color: var(--pink); flex-shrink: 0; }

.hero__media { position: relative; }
.hero__media img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.hero__badge {
  position: absolute;
  bottom: -18px;
  left: -14px;
  background: var(--white);
  color: var(--heading);
  border-radius: var(--radius);
  padding: 0.85rem 1.2rem;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 800;
  font-size: 0.9rem;
  border: 1px solid var(--border);
}
.hero__badge b { color: var(--pink); font-size: 1.35rem; font-family: var(--font-display); }
@media (max-width: 940px) { .hero__badge { left: 10px; } }

/* ---------- Герои (карти) ---------- */
.chars {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(255px, 1fr));
  gap: clamp(1rem, 2.4vw, 1.75rem);
}
.char {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.char:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.char__img { position: relative; aspect-ratio: 1 / 1; background: var(--gray-100); overflow: hidden; }
.char__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.char:hover .char__img img { transform: scale(1.05); }
.char__tag {
  position: absolute;
  top: 0.8rem;
  left: 0.8rem;
  background: var(--yellow);
  color: #4a3300;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.32rem 0.7rem;
  border-radius: var(--radius-pill);
}
.char__body { padding: 1.15rem 1.25rem 1.35rem; display: flex; flex-direction: column; flex: 1; }
.char__body h3 { margin-bottom: 0.4rem; }
.char__body p {
  font-size: 0.94rem;
  color: var(--gray-500);
  margin-bottom: 1rem;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.char__link {
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--pink-dark);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.char__link:hover { gap: 0.6rem; }
.char__link::after { content: '→'; transition: transform 0.15s ease; }

/* ---------- Герои без снимка ---------- */
.char__img--placeholder {
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 40%, rgba(244, 66, 161, 0.12), transparent 68%),
    var(--gray-100);
}
.char__img--placeholder span {
  font-size: clamp(3rem, 8vw, 4.2rem);
  line-height: 1;
  filter: saturate(1.05);
}

.chars-note {
  margin-top: 2rem;
  padding: 1rem 1.25rem;
  background: var(--bg-alt);
  border: 1px dashed var(--gray-300);
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.96rem;
  color: var(--gray-700);
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme='light']) .chars-note { color: var(--text); }
}

/* ---------- Поводи ---------- */
.occasions {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 0.9rem;
}
.occasion {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.15rem;
  font-weight: 700;
  font-size: 0.97rem;
  transition: border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}
.occasion:hover {
  border-color: var(--pink);
  transform: translateY(-3px) rotate(-0.6deg);
  box-shadow: 0 10px 26px rgba(244, 66, 161, 0.16);
}
.occasion span:first-child {
  font-size: 1.5rem;
  line-height: 1;
  transition: transform 0.22s ease;
}
.occasion:hover span:first-child { transform: scale(1.18) rotate(-8deg); }

/* цветна лента отгоре на картите с герои */
.char { position: relative; }
.char::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--pink), var(--yellow), #7360f2, #25d366);
  opacity: 0;
  transition: opacity 0.22s ease;
  z-index: 2;
}
.char:hover::before { opacity: 1; }

/* ---------- Как работи ---------- */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.75rem; }
.step { position: relative; padding-top: 3.4rem; }
.step__num {
  position: absolute;
  top: 0;
  left: 0;
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--pink-dark));
  color: #fff;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  box-shadow: 0 6px 18px rgba(244, 66, 161, 0.32);
}
.step:nth-child(2) .step__num { background: linear-gradient(135deg, var(--yellow), #e0a520); box-shadow: 0 6px 18px rgba(249,194,60,0.35); color: #4a3300; }
.step:nth-child(3) .step__num { background: linear-gradient(135deg, #7360f2, #5b48d8); box-shadow: 0 6px 18px rgba(115,96,242,0.32); }
.step:nth-child(4) .step__num { background: linear-gradient(135deg, #25d366, #1eb959); box-shadow: 0 6px 18px rgba(37,211,102,0.32); color: #06301a; }
.step p { font-size: 0.97rem; color: var(--gray-500); margin-bottom: 0; }

/* ---------- Галерия ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 0.85rem;
}
.gallery img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius);
  transition: transform 0.25s ease;
}
.gallery img:hover { transform: scale(1.02); }
.gallery figure { margin: 0; }
.gallery figure:nth-child(1), .gallery figure:nth-child(6) { grid-column: span 2; }
.gallery figure:nth-child(1) img, .gallery figure:nth-child(6) img { aspect-ratio: 2 / 1; }
@media (max-width: 640px) {
  .gallery figure:nth-child(1), .gallery figure:nth-child(6) { grid-column: span 1; }
  .gallery figure:nth-child(1) img, .gallery figure:nth-child(6) img { aspect-ratio: 1 / 1; }
}

/* ---------- Отзиви ---------- */
.reviews { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.25rem; }
.review {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--pink);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.review p { font-size: 0.98rem; margin-bottom: 0.9rem; }
.review footer { font-weight: 800; font-size: 0.9rem; color: var(--gray-500); }
.stars { color: var(--yellow); letter-spacing: 2px; margin-bottom: 0.6rem; }

/* ---------- FAQ ---------- */
.faq { max-width: 800px; margin-inline: auto; }
.faq details {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  background: var(--white);
  overflow: hidden;
}
.faq details[open] { border-color: var(--pink); }
.faq summary {
  cursor: pointer;
  padding: 1.15rem 1.35rem;
  font-weight: 800;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--heading);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--pink);
  transition: transform 0.2s ease;
  line-height: 1;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details > div { padding: 0 1.35rem 1.25rem; }
.faq details > div p:last-child { margin-bottom: 0; }

/* ---------- CTA лента ---------- */
.cta {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(520px 300px at 12% 8%, rgba(249,194,60,0.35), transparent 62%),
    radial-gradient(480px 300px at 88% 92%, rgba(115,96,242,0.35), transparent 62%),
    linear-gradient(135deg, var(--pink) 0%, #b8286f 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 5vw, 3.5rem);
  text-align: center;
}
/* конфети вътре в CTA лентата */
.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle, #fff 50%, transparent 51%),
    radial-gradient(circle, var(--yellow) 50%, transparent 51%),
    radial-gradient(circle, #fff 50%, transparent 51%),
    linear-gradient(46deg, transparent 46%, var(--yellow) 46% 54%, transparent 54%),
    linear-gradient(-38deg, transparent 46%, #fff 46% 54%, transparent 54%),
    radial-gradient(circle, #7360f2 50%, transparent 51%);
  background-size: 9px 9px, 11px 11px, 7px 7px, 19px 19px, 16px 16px, 10px 10px;
  background-position: 8% 22%, 22% 74%, 91% 30%, 78% 78%, 14% 46%, 66% 16%;
  background-repeat: no-repeat;
  opacity: 0.5;
}
.cta > * { position: relative; z-index: 1; }
.cta h2 { color: #fff; }
.cta p { color: rgba(255, 255, 255, 0.92); max-width: 52ch; margin-inline: auto; font-size: 1.08rem; }
.cta .btn-row { justify-content: center; margin-top: 1.75rem; }
.cta .btn--call { background: #fff; color: var(--pink-dark); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2); }
.cta .btn--call:hover { background: var(--cream); }

/* ---------- Футър ---------- */
.footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.72);
  padding-block: 3.5rem 2rem;
  font-size: 0.94rem;
}
.footer h4 { color: #fff; font-size: 1.05rem; margin-bottom: 0.9rem; }
.footer a { color: rgba(255, 255, 255, 0.8); text-decoration: none; }
.footer a:hover { color: #fff; text-decoration: underline; }
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
@media (max-width: 760px) { .footer__grid { grid-template-columns: 1fr; gap: 2rem; } }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.55rem; }
.footer__bottom {
  padding-top: 1.75rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.55);
}
.social { display: flex; gap: 0.7rem; margin-top: 1.1rem; }
.social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: grid;
  place-items: center;
  transition: background-color 0.18s ease, transform 0.18s ease;
}
.social a:hover { background: var(--pink); transform: translateY(-2px); }
.social svg { width: 20px; height: 20px; fill: #fff; }

/* ---------- Мобилна лента за контакт ---------- */
.mobile-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: none;
  gap: 0.5rem;
  padding: 0.6rem 0.7rem calc(0.6rem + env(safe-area-inset-bottom));
  background: color-mix(in srgb, var(--bg) 94%, transparent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
}
.mobile-bar .btn {
  flex: 1 1 0;
  min-width: 0;
  padding: 0.9rem 0.4rem;
  font-size: 0.85rem;
  gap: 0.35rem;
  white-space: nowrap;
}
@media (max-width: 360px) { .mobile-bar .btn { font-size: 0.78rem; } }
@media (max-width: 768px) {
  .mobile-bar { display: flex; }
  body { padding-bottom: 76px; }
}

/* ---------- Още празнични акценти ---------- */

/* серпентини по горния ръб на празничните секции */
.section--alt::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  background: repeating-linear-gradient(
    90deg,
    var(--pink) 0 22px,
    var(--yellow) 22px 44px,
    #7360f2 44px 66px,
    #25d366 66px 88px
  );
  opacity: 0.85;
}

/* галерията: леко наклонени снимки, като разпръснати полароиди */
.gallery figure { transition: transform 0.3s cubic-bezier(.34,1.4,.64,1); }
.gallery figure:nth-child(odd)  { transform: rotate(-0.7deg); }
.gallery figure:nth-child(even) { transform: rotate(0.7deg); }
.gallery figure:hover { transform: rotate(0deg) scale(1.03); z-index: 2; position: relative; }
.gallery img { box-shadow: var(--shadow-sm); }

/* картите се повдигат и наклоняват съвсем леко */
.char:hover { transform: translateY(-7px) rotate(-0.5deg); }

/* значката на картата подскача */
@keyframes tag-bob {
  0%,100% { transform: translateY(0) rotate(-3deg); }
  50%     { transform: translateY(-3px) rotate(3deg); }
}
.char__tag { animation: tag-bob 2.6s ease-in-out infinite; }
@media (prefers-reduced-motion: reduce) { .char__tag { animation: none; } }

/* отзивите с голяма кавичка */
.review { position: relative; overflow: hidden; }
.review::before {
  content: '"';
  position: absolute;
  top: -0.35em; right: 0.1em;
  font-family: var(--font-display);
  font-size: 6rem;
  line-height: 1;
  color: var(--pink);
  opacity: 0.1;
  pointer-events: none;
}

/* FAQ: цветна точка пред въпроса */
.faq summary { position: relative; padding-left: 2.6rem; }
.faq summary::before {
  content: '';
  position: absolute;
  left: 1.3rem; top: 50%;
  width: 9px; height: 9px;
  margin-top: -4px;
  border-radius: 50%;
  background: var(--pink);
  transition: transform 0.2s ease, background-color 0.2s ease;
}
.faq details:nth-child(2) summary::before { background: var(--yellow); }
.faq details:nth-child(3) summary::before { background: #7360f2; }
.faq details:nth-child(4) summary::before { background: #25d366; }
.faq details:nth-child(5) summary::before { background: var(--coral); }
.faq details[open] summary::before { transform: scale(1.5); }

/* стъпките свързани с пунктирана линия */
.steps { position: relative; }
.step::after {
  content: '';
  position: absolute;
  top: 1.4rem;
  left: 3.4rem;
  right: -1.2rem;
  height: 2px;
  background-image: linear-gradient(90deg, var(--gray-300) 50%, transparent 50%);
  background-size: 9px 2px;
  opacity: 0.75;
}
.step:last-child::after { display: none; }
@media (max-width: 980px) { .step::after { display: none; } }

/* футърът с цветна лента отгоре */
.footer { position: relative; }
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--pink), var(--yellow), #7360f2, #25d366, var(--coral));
}

/* ---------- Появяване при скрол ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.65s cubic-bezier(.22,.9,.3,1),
    transform 0.65s cubic-bezier(.22,.9,.3,1);
  will-change: opacity, transform;
}
[data-reveal].is-in { opacity: 1; transform: none; }

/* варианти */
[data-reveal="left"]  { transform: translateX(-34px); }
[data-reveal="right"] { transform: translateX(34px); }
[data-reveal="zoom"]  { transform: scale(.9); }
[data-reveal="pop"]   { transform: scale(.82) translateY(16px); }
[data-reveal="left"].is-in,
[data-reveal="right"].is-in,
[data-reveal="zoom"].is-in,
[data-reveal="pop"].is-in { transform: none; }

/* по-игриво изскачане за картите */
[data-reveal="pop"].is-in {
  transition:
    opacity 0.5s ease,
    transform 0.62s cubic-bezier(.34,1.56,.64,1);
}

/* каскада: всяко дете тръгва малко след предното */
[data-stagger] > * { transition-delay: calc(var(--i, 0) * 65ms); }

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* защитна мрежа: ако JS не се е задействал навреме, показваме всичко */
.reveal-fallback [data-reveal] { opacity: 1 !important; transform: none !important; }

/* ---------- Ефекти при посочване / броячи ---------- */
.count-up { font-variant-numeric: tabular-nums; }

/* лек „дъх" на бутона за обаждане, за да привлича окото */
@keyframes pulse-ring {
  0%   { box-shadow: 0 0 0 0 rgba(244, 66, 161, 0.5), var(--shadow-lg); }
  70%  { box-shadow: 0 0 0 16px rgba(244, 66, 161, 0), var(--shadow-lg); }
  100% { box-shadow: 0 0 0 0 rgba(244, 66, 161, 0), var(--shadow-lg); }
}
.hero .btn--call { animation: pulse-ring 2.8s ease-out infinite; }
.hero .btn--call:hover { animation-play-state: paused; }
@media (prefers-reduced-motion: reduce) { .hero .btn--call { animation: none; } }

/* заглавието се подчертава с четка */
.hero h1 em { position: relative; display: inline-block; }
.hero h1 em::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0.06em;
  height: 0.16em;
  background: linear-gradient(90deg, var(--yellow), rgba(249,194,60,0));
  border-radius: 4px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.8s cubic-bezier(.22,.9,.3,1) 0.5s;
  z-index: -1;
}
.hero h1 em.is-in::after { transform: scaleX(1); }

/* ---------- Помощни ---------- */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--pink);
  color: #fff;
  padding: 0.75rem 1.25rem;
  z-index: 999;
  border-radius: 0 0 var(--radius) 0;
  font-weight: 700;
}
.skip-link:focus { left: 0; }
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
