/* ════════════════════════════════════════════════════════════
   Игралочка — Custom Styles
   Детская игровая комната
   ════════════════════════════════════════════════════════════ */

/* ── Variables ───────────────────────────────────────────── */
:root {
  --purple:  #8B5CF6;
  --purple2: #7C3AED;
  --pink:    #EC4899;
  --pink2:   #DB2777;
  --orange:  #F97316;
  --yellow:  #FBBF24;
  --green:   #10B981;
  --blue:    #3B82F6;
  --red:     #EF4444;
  --indigo:  #312E81;

  --hero-from:  #7C3AED;
  --hero-mid:   #EC4899;
  --hero-to:    #F97316;

  --radius-card: 1.5rem;
  --shadow-card: 0 10px 40px rgba(0,0,0,.10);
  --shadow-hover: 0 20px 50px rgba(0,0,0,.18);
}

/* ── Base ────────────────────────────────────────────────── */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Nunito', sans-serif; color: #1E1B2E; }

/* ── Scrollbar ───────────────────────────────────────────── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: var(--purple); border-radius: 9px; }

/* ══════════════════════════════════════════════════════════
   HEADER
   ══════════════════════════════════════════════════════════ */
#site-header { backdrop-filter: blur(0); }

.header-transparent {
  background: transparent;
  color: #fff;
}
.header-solid {
  background: rgba(227, 107, 243, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(227, 107, 243, 0.97);
  color: #fff;
}

/* Logo */
.logo-text {
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: .05em;
  background: linear-gradient(135deg, #FF3B30, #FF9500, #FFCC00, #34C759, #007AFF, #AF52DE);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.header-transparent .logo-text { filter: drop-shadow(0 1px 3px rgba(0,0,0,.3)); }

/* Nav links */
.nav-link {
  position: relative;
  font-weight: 700;
  transition: color .2s;
}
.header-transparent .nav-link { color: rgba(255,255,255,.9); }
.header-transparent .nav-link:hover { color: #fff; }
.header-solid     .nav-link { color: rgba(255,255,255,.9); }
.header-solid     .nav-link:hover { color: #fff; }
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 100%;
  height: 2px;
  background: var(--purple);
  border-radius: 2px;
  transition: right .25s ease;
}
.nav-link:hover::after { right: 0; }

/* Burger */
.burger-line {
  display: block;
  width: 24px;
  height: 2.5px;
  background: currentColor;
  border-radius: 2px;
  transition: background .2s;
}
.header-transparent .burger-line { background: #fff; }
.header-solid     .burger-line { background: #fff; }

/* Mobile menu */
.mobile-menu-panel {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  border-top: 1px solid #E5E7EB;
  box-shadow: 0 8px 24px rgba(0,0,0,.1);
}
.mobile-nav-link {
  display: block;
  padding: .7rem 1rem;
  font-size: .95rem;
  font-weight: 700;
  color: #374151;
  border-radius: .75rem;
  transition: background .15s, color .15s;
}
.mobile-nav-link:hover { background: #F3F4F6; color: var(--purple); }

/* ══════════════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════════════ */
.hero-section { background: #7C3AED; }

.hero-gradient-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #7C3AED 0%, #EC4899 55%, #F97316 100%);
}

/* Bubbles */
.bubble {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  pointer-events: none;
}
.b1 { width: 500px; height: 500px; top: -200px; right: -150px; }
.b2 { width: 300px; height: 300px; bottom: -100px; left: -80px; }
.b3 { width: 200px; height: 200px; top: 30%; left: 5%; }
.b4 { width: 150px; height: 150px; bottom: 20%; right: 10%; background: rgba(255,255,255,.06); }
.b5 { width: 80px;  height: 80px;  top: 60%; left: 45%; background: rgba(255,255,255,.1); }

/* Floating emojis */
.float-emoji {
  position: absolute;
  font-size: 2rem;
  pointer-events: none;
  user-select: none;
  animation: floatUpDown 4s ease-in-out infinite;
}
.fe1 { top: 15%; left:  8%; animation-delay: 0s;    font-size: 1.8rem; }
.fe2 { top: 25%; left: 18%; animation-delay: .7s;   font-size: 1.2rem; }
.fe3 { top: 12%; right: 12%; animation-delay: 1.2s; }
.fe4 { top: 45%; right:  5%; animation-delay: .4s;  font-size: 1.5rem; }
.fe5 { top: 65%; left:  3%; animation-delay: 1.8s;  font-size: 1.6rem; }
.fe6 { top: 20%; right: 28%; animation-delay: 2.2s; font-size: 1.3rem; }
.fe7 { top: 55%; right: 20%; animation-delay: .9s;  font-size: 1.1rem; }
.fe8 { top:  5%; left: 45%; animation-delay: 1.5s;  font-size: 1.4rem; }

/* Hero text */
.hero-title {
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 8px rgba(0,0,0,.15);
}
.hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,.88);
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 540px;
}

/* Hero buttons */
.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: #fff;
  color: var(--purple2);
  font-size: 1rem;
  font-weight: 800;
  padding: .9rem 1.8rem;
  border-radius: 3rem;
  box-shadow: 0 8px 24px rgba(0,0,0,.2);
  transition: transform .2s, box-shadow .2s;
  text-decoration: none;
}
.btn-hero-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(0,0,0,.3); }
.btn-hero-primary .btn-icon { font-size: 1.2rem; transition: transform .3s; }
.btn-hero-primary:hover .btn-icon { transform: rotate(15deg) scale(1.3); }

.btn-hero-wa {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: #25D366;
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
  padding: .9rem 1.8rem;
  border-radius: 3rem;
  box-shadow: 0 8px 24px rgba(37,211,102,.4);
  transition: transform .2s, box-shadow .2s;
  text-decoration: none;
}
.btn-hero-wa:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(37,211,102,.5); }

/* Hero stats */
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 1rem;
  padding: .9rem 1.25rem;
  width: fit-content;
}
.hero-stat { display: flex; flex-direction: column; }
.hero-stat strong { font-size: 1.2rem; font-weight: 900; color: #fff; }
.hero-stat span   { font-size: .78rem; color: rgba(255,255,255,.8); font-weight: 600; }
.hero-stat-sep { width: 1px; height: 36px; background: rgba(255,255,255,.3); }

/* Rainbow illustration */
.hero-illustration {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.rainbow-container { position: relative; width: 320px; height: 200px; }
.rainbow-arc {
  position: absolute;
  top: 0; left: 0; right: 0;
  width: 320px;
  height: 160px;
  border-radius: 160px 160px 0 0;
  background: linear-gradient(to right, #FF3B30, #FF9500, #FFCC00, #34C759, #007AFF, #AF52DE);
  box-shadow: 0 0 40px rgba(139,92,246,.5);
}
.rainbow-inner {
  position: absolute;
  top: 30px; left: 30px; right: 30px; bottom: -10px;
  border-radius: 130px 130px 0 0;
  background: rgba(124,58,237,.6);
  backdrop-filter: blur(2px);
}
.cloud {
  position: absolute;
  bottom: 10px;
  width: 90px;
  height: 55px;
  background: #fff;
  border-radius: 50%;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,.12));
}
.cloud::before {
  content: '';
  position: absolute;
  top: -22px; left: 15px;
  width: 55px;
  height: 55px;
  background: #fff;
  border-radius: 50%;
}
.cloud::after {
  content: '';
  position: absolute;
  top: -14px; left: 35px;
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 50%;
}
.cloud-left  { left: -20px; }
.cloud-right { right: -20px; }

.hero-brand-name {
  font-size: 2.4rem;
  font-weight: 900;
  letter-spacing: .08em;
  margin-top: .5rem;
  text-shadow: 0 2px 8px rgba(0,0,0,.2);
  animation: floatUpDown 5s ease-in-out infinite;
}
.hero-brand-sub {
  font-size: .85rem;
  font-weight: 700;
  background: #FFCC00;
  color: #1E1B2E;
  padding: .3rem 1rem;
  border-radius: 2rem;
  margin-top: .5rem;
}

/* Floating activity cards */
.activity-card-float {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(8px);
  border-radius: 1rem;
  padding: .7rem .9rem;
  box-shadow: 0 8px 24px rgba(0,0,0,.18);
  animation: floatUpDown 3.5s ease-in-out infinite;
}
.afc1 { top: -60px; left:  -50px; animation-delay: 0s; }
.afc2 { top: -40px; right: -60px; animation-delay: 1s; }
.afc3 { bottom: 40px; right: -70px; animation-delay: 2s; }

/* Hero wave */
.hero-wave {
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 80px;
  pointer-events: none;
}
.hero-wave svg { width: 100%; height: 100%; }

/* ══════════════════════════════════════════════════════════
   SECTION HEADERS
   ══════════════════════════════════════════════════════════ */
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: .35rem .9rem;
  border-radius: 2rem;
  margin-bottom: .75rem;
  background: #EDE9FE;
  color: var(--purple2);
}
.section-badge-warm   { background: #FEF3C7; color: #92400E; }
.section-badge-purple { background: #EDE9FE; color: var(--purple2); }
.section-badge-green  { background: #D1FAE5; color: #065F46; }

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 900;
  color: #1E1B2E;
  margin-bottom: .6rem;
  line-height: 1.2;
}
.section-subtitle {
  font-size: 1rem;
  color: #6B7280;
  font-weight: 600;
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ══════════════════════════════════════════════════════════
   PRICING CARDS
   ══════════════════════════════════════════════════════════ */
.pricing-card {
  position: relative;
  border-radius: var(--radius-card);
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: transform .25s, box-shadow .25s;
  overflow: hidden;
}
.pricing-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }

.pc-blue   { background: linear-gradient(145deg, #EFF6FF, #DBEAFE); }
.pc-purple { background: linear-gradient(145deg, #8B5CF6, #7C3AED); color: #fff; }
.pc-green  { background: linear-gradient(145deg, #ECFDF5, #D1FAE5); }
.pc-orange { background: linear-gradient(145deg, #FFF7ED, #FED7AA); }

.pricing-popular-badge {
  position: absolute;
  top: 14px; right: -28px;
  background: #FBBF24;
  color: #1E1B2E;
  font-size: .72rem;
  font-weight: 900;
  padding: .3rem 2.2rem;
  transform: rotate(45deg);
  letter-spacing: .03em;
  text-transform: uppercase;
}

.pricing-popular { transform: scale(1.04); }
.pricing-popular:hover { transform: scale(1.04) translateY(-8px); }

.pricing-icon {
  font-size: 2.8rem;
  margin-bottom: .75rem;
  animation: floatUpDown 3s ease-in-out infinite;
}
.pricing-name  { font-size: 1.1rem; font-weight: 800; margin-bottom: .4rem; }
.pricing-price { font-size: 2rem; font-weight: 900; margin-bottom: .6rem; }
.pc-purple .pricing-price { color: #FBBF24; }
.pc-blue   .pricing-price { color: var(--blue); }
.pc-green  .pricing-price { color: var(--green); }
.pc-orange .pricing-price { color: var(--orange); }

.pricing-desc {
  font-size: .88rem;
  font-weight: 600;
  line-height: 1.55;
  color: #6B7280;
  flex: 1;
  margin-bottom: 1.25rem;
}
.pc-purple .pricing-desc { color: rgba(255,255,255,.8); }

.pricing-btn {
  display: inline-block;
  font-size: .9rem;
  font-weight: 800;
  padding: .65rem 1.5rem;
  border-radius: 2rem;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
}
.pc-blue   .pricing-btn { background: var(--blue);   color: #fff; box-shadow: 0 4px 14px rgba(59,130,246,.4); }
.pc-green  .pricing-btn { background: var(--green);  color: #fff; box-shadow: 0 4px 14px rgba(16,185,129,.4); }
.pc-orange .pricing-btn { background: var(--orange); color: #fff; box-shadow: 0 4px 14px rgba(249,115,22,.4); }
.pricing-btn-white {
  background: #fff;
  color: var(--purple2);
  box-shadow: 0 4px 14px rgba(0,0,0,.2);
}
.pricing-btn:hover { transform: translateY(-2px) scale(1.03); }

/* ══════════════════════════════════════════════════════════
   ACTIVITIES SECTION
   ══════════════════════════════════════════════════════════ */
.activities-section {
  background: linear-gradient(160deg, #FFF7ED 0%, #FEF3C7 100%);
  padding-bottom: 5rem;
  position: relative;
}
.act-deco-circle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.ac1 { width: 400px; height: 400px; background: rgba(251,191,36,.12); top: -100px; right: -100px; }
.ac2 { width: 250px; height: 250px; background: rgba(249,115,22,.1);  bottom: -50px; left: -50px; }

.act-wave-bottom {
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 60px;
  pointer-events: none;
}
.act-wave-bottom svg { width: 100%; height: 100%; }

.act-card {
  border-radius: var(--radius-card);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: transform .25s, box-shadow .25s;
}
.act-card:hover { transform: translateY(-8px) rotate(-1deg); box-shadow: var(--shadow-hover); }

.act-card-red    { background: linear-gradient(145deg, #FFF1F2, #FFE4E6); }
.act-card-blue   { background: linear-gradient(145deg, #EFF6FF, #DBEAFE); }
.act-card-yellow { background: linear-gradient(145deg, #FFFBEB, #FEF3C7); }
.act-card-green  { background: linear-gradient(145deg, #ECFDF5, #D1FAE5); }

.act-card-icon  { font-size: 3rem; margin-bottom: .75rem; display: block; }
.act-card-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #1E1B2E;
  margin-bottom: .5rem;
}
.act-card-text {
  font-size: .88rem;
  font-weight: 600;
  color: #6B7280;
  line-height: 1.6;
}

/* ══════════════════════════════════════════════════════════
   TRUST SECTION
   ══════════════════════════════════════════════════════════ */
.trust-stats-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  align-items: center;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  border-radius: 1.5rem;
  padding: 1.5rem 2.5rem;
  box-shadow: 0 10px 30px rgba(139,92,246,.3);
  color: #fff;
  text-align: center;
}
.trust-stat-item { display: flex; flex-direction: column; align-items: center; gap: .2rem; }
.trust-stat-val  { font-size: 2rem; font-weight: 900; }
.trust-stat-item span { font-size: .82rem; font-weight: 600; opacity: .85; }
.trust-stat-sep { width: 1px; height: 50px; background: rgba(255,255,255,.3); }

.trust-card {
  background: #FAFAFA;
  border: 1.5px solid #F3F4F6;
  border-radius: var(--radius-card);
  padding: 1.75rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.trust-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); border-color: #E9D5FF; }

.trust-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px; height: 64px;
  border-radius: 1.2rem;
  font-size: 2rem;
  margin-bottom: 1rem;
}
.ti-green  { background: #D1FAE5; }
.ti-purple { background: #EDE9FE; }
.ti-blue   { background: #DBEAFE; }
.ti-orange { background: #FED7AA; }

.trust-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: #1E1B2E;
  margin-bottom: .5rem;
}
.trust-text {
  font-size: .875rem;
  font-weight: 600;
  color: #6B7280;
  line-height: 1.65;
}

/* ══════════════════════════════════════════════════════════
   CTA SECTION
   ══════════════════════════════════════════════════════════ */
.cta-section {
  background: linear-gradient(135deg, #7C3AED 0%, #EC4899 60%, #F97316 100%);
}
.cta-bubble {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  pointer-events: none;
  animation: floatUpDown 6s ease-in-out infinite;
}
.cb1 { width: 350px; height: 350px; top: -150px; left: -100px; animation-delay: 0s; }
.cb2 { width: 200px; height: 200px; bottom: -80px; right: 10%; animation-delay: 1.5s; }
.cb3 { width: 120px; height: 120px; top: 20%; right: 5%;  animation-delay: 3s; }

.cta-emoji-row { font-size: 2.5rem; margin-bottom: 1rem; letter-spacing: .5rem; }
.cta-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: .75rem;
}
.cta-subtitle {
  font-size: 1rem;
  color: rgba(255,255,255,.85);
  font-weight: 600;
  margin-bottom: .25rem;
}

.cta-btn-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  background: #25D366;
  color: #fff;
  font-size: .95rem;
  font-weight: 800;
  padding: .85rem 1.8rem;
  border-radius: 3rem;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(37,211,102,.5);
  transition: transform .2s, box-shadow .2s;
}
.cta-btn-wa:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 10px 28px rgba(37,211,102,.6); }

.cta-btn-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
  border: 2px solid rgba(255,255,255,.5);
  color: #fff;
  font-size: .95rem;
  font-weight: 800;
  padding: .85rem 1.8rem;
  border-radius: 3rem;
  text-decoration: none;
  transition: background .2s, transform .2s;
}
.cta-btn-phone:hover { background: rgba(255,255,255,.25); transform: translateY(-3px); }

/* ══════════════════════════════════════════════════════════
   CONTACTS
   ══════════════════════════════════════════════════════════ */
.contacts-section { background: #F0FDF4; }

.contact-card {
  background: #fff;
  border-radius: var(--radius-card);
  padding: 2rem 1.75rem;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: transform .25s, box-shadow .25s;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contact-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }

.contact-icon  { font-size: 2.5rem; margin-bottom: .75rem; }
.contact-label { font-size: .78rem; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; color: #9CA3AF; margin-bottom: .35rem; }
.contact-value { font-size: 1rem; font-weight: 800; color: #1E1B2E; line-height: 1.4; text-decoration: none; }
.contact-hint  { font-size: .82rem; font-weight: 600; color: #9CA3AF; margin-top: .4rem; line-height: 1.5; }
.contact-phone { color: var(--purple); font-size: 1.15rem; }
.contact-phone:hover { color: var(--purple2); }

/* ══════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════ */
.footer-section { background: #1E1B4B; color: #fff; }

.footer-logo-text {
  font-size: 1.3rem;
  font-weight: 900;
  letter-spacing: .06em;
  background: linear-gradient(135deg, #FF3B30, #FF9500, #FFCC00, #34C759, #007AFF, #AF52DE);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.footer-tagline { font-size: .82rem; font-weight: 600; color: rgba(255,255,255,.5); }

.footer-phone {
  font-size: 1.15rem;
  font-weight: 800;
  color: #A78BFA;
  text-decoration: none;
  transition: color .2s;
}
.footer-phone:hover { color: #fff; }
.footer-address, .footer-hours {
  font-size: .85rem;
  font-weight: 600;
  color: rgba(255,255,255,.6);
}
.footer-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: #25D366;
  color: #fff;
  font-size: .9rem;
  font-weight: 800;
  padding: .7rem 1.5rem;
  border-radius: 3rem;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(37,211,102,.4);
  transition: transform .2s, box-shadow .2s;
}
.footer-wa-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,.5); }

.footer-copy { font-size: .78rem; font-weight: 600; color: rgba(255,255,255,.35); }

/* ══════════════════════════════════════════════════════════
   FLOATING WHATSAPP BUTTON
   ══════════════════════════════════════════════════════════ */
.float-wa-btn {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 100;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,.55);
  transition: transform .2s, box-shadow .2s;
  text-decoration: none;
}
.float-wa-btn:hover { transform: scale(1.12); box-shadow: 0 10px 32px rgba(37,211,102,.65); }

.float-wa-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  animation: pulsing 2s ease-out infinite;
}

/* ══════════════════════════════════════════════════════════
   ANIMATIONS
   ══════════════════════════════════════════════════════════ */
@keyframes floatUpDown {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-14px); }
}

@keyframes pulsing {
  0%   { transform: scale(1); opacity: .7; }
  70%  { transform: scale(1.7); opacity: 0; }
  100% { transform: scale(1.7); opacity: 0; }
}

@keyframes spinSlow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

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

@keyframes zoomIn {
  from { opacity: 0; transform: scale(.8); }
  to   { opacity: 1; transform: scale(1); }
}

.animate-pulse-gentle {
  animation: floatUpDown 3s ease-in-out infinite;
}

/* GSAP animation initial states */
[data-anim] { opacity: 0; }
