/* ═══════════════════════════════════════════════
   PatriciaSpanish · Landing — Playful Edition
   ═══════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700;800&family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,700;1,9..144,400;1,9..144,700&display=swap');

:root {
  --pop-pink: #E8345A;
  --pop-pink-dark: #C42847;
  --pop-pink-glow: rgba(232,52,90,0.15);
  --sunny: #FFB627;
  --sunny-light: #FFF0C8;
  --sunny-dark: #E09800;
  --mint: #2EC4B6;
  --mint-light: #D4F5F0;
  --mint-dark: #1A9E92;
  --grape: #7B2D8B;
  --grape-light: #F0E0F5;
  --ink: #1A1A2E;
  --ink-soft: #4A4A5A;
  --cloud: #FAFBFF;
  --white: #FFFFFF;
  --border-fun: rgba(26,26,46,0.08);
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Sora', system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cloud);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ─────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0.9rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background:
    linear-gradient(
      135deg,
      rgba(26,26,46,0.85) 0%,
      rgba(123,45,139,0.7) 25%,
      rgba(91,141,239,0.6) 50%,
      rgba(232,52,90,0.5) 75%,
      rgba(26,26,46,0.85) 100%
    );
  background-size: 300% 300%;
  animation: nebulaNav 12s ease infinite;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: none;
  transition: padding 0.4s ease, box-shadow 0.4s ease;
}

@keyframes nebulaNav {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

nav.scrolled {
  padding: 0.6rem 2rem;
  box-shadow: none;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--pop-pink);
  text-decoration: none;
  letter-spacing: -0.03em;
}

.nav-logo span { color: var(--mint); }

.nav-links {
  display: flex;
  gap: 1.8rem;
  align-items: center;
}

.nav-links a {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink-soft);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color 0.3s;
  position: relative;
}

.nav-links a:hover { color: var(--pop-pink); }

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--sunny);
  border-radius: 2px;
  transition: width 0.3s;
}

.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: var(--pop-pink) !important;
  color: var(--white) !important;
  padding: 0.5rem 1.4rem !important;
  border-radius: 12px !important;
  font-weight: 700 !important;
  transition: all 0.3s !important;
  transform: rotate(-1deg);
}

.nav-cta::after { display: none !important; }

.nav-cta:hover {
  background: var(--pop-pink-dark) !important;
  transform: rotate(0deg) scale(1.05) !important;
}

.lang-toggle {
  font-size: 0.72rem;
  padding: 0.3rem 0.7rem;
  border: 2px solid var(--sunny);
  border-radius: 8px;
  cursor: pointer;
  background: var(--sunny-light);
  color: var(--ink);
  font-weight: 700;
  font-family: var(--font-body);
  transition: all 0.3s;
}

.lang-toggle:hover {
  background: var(--sunny);
  transform: scale(1.05);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--ink);
  border-radius: 3px;
  transition: all 0.3s;
}

/* ── HERO ─────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 2rem 4rem;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 20%, var(--pop-pink-glow) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(46,196,182,0.08) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(255,182,39,0.06) 0%, transparent 60%);
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text { animation: popIn 0.8s cubic-bezier(0.34, 1.56, 0.64, 1); }

@keyframes popIn {
  from { opacity: 0; transform: translateY(40px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.hero-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mint-dark);
  background: var(--mint-light);
  padding: 0.4rem 1rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  transform: rotate(-2deg);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  line-height: 1.08;
  color: var(--ink);
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
  font-weight: 700;
}

.hero-title em {
  font-style: italic;
  color: var(--pop-pink);
  position: relative;
}

.hero-title em::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: -4px;
  right: -4px;
  height: 12px;
  background: var(--sunny);
  opacity: 0.35;
  border-radius: 4px;
  z-index: -1;
  transform: rotate(-1deg);
}

.hero-subtitle {
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--ink-soft);
  max-width: 480px;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ── BUTTONS ──────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--pop-pink);
  color: var(--white);
  padding: 0.95rem 2rem;
  border-radius: 90px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  font-family: var(--font-body);
  box-shadow: 0 4px 15px rgba(232,52,90,0.2);
  transform: rotate(-0.5deg);
}

.btn-primary:hover {
  background: var(--pop-pink-dark);
  transform: rotate(0deg) translateY(-3px) scale(1.03);
  box-shadow: 0 8px 25px rgba(232,52,90,0.3);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--white);
  color: var(--ink);
  padding: 0.95rem 2rem;
  border-radius: 90px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  border: 3px solid var(--ink);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  font-family: var(--font-body);
}

.btn-secondary:hover {
  background: var(--sunny-light);
  border-color: var(--sunny-dark);
  color: var(--ink);
  transform: translateY(-2px);
}

/* ── HERO PHOTO ───────────────────── */
.hero-photo-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  animation: popIn 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.15s both;
}

.hero-photo-frame {
  position: relative;
  width: 370px;
  height: 370px;
  border-radius: 30px;
  overflow: hidden;
  transform: rotate(3deg);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow:
    0 20px 50px rgba(26,26,46,0.12),
    8px 8px 0 var(--sunny),
    16px 16px 0 var(--mint);
}

.hero-photo-frame:hover {
  transform: rotate(0deg) scale(1.02);
}

.hero-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
}

.hero-float-card {
  position: absolute;
  background: var(--white);
  padding: 0.75rem 1.2rem;
  border-radius: 14px;
  box-shadow: 0 6px 25px rgba(26,26,46,0.1);
  font-size: 0.82rem;
  font-weight: 600;
  border: 2px solid var(--border-fun);
  animation: bounce 3s ease-in-out infinite;
}

.hero-float-card.card-1 {
  top: 5%;
  right: -12%;
  background: var(--sunny-light);
  border-color: var(--sunny);
  transform: rotate(4deg);
  animation-delay: 0s;
}

.hero-float-card.card-2 {
  bottom: 12%;
  left: -10%;
  background: var(--mint-light);
  border-color: var(--mint);
  transform: rotate(-3deg);
  animation-delay: 1.2s;
}

.hero-float-card .emoji { font-size: 1.2rem; margin-right: 0.3rem; }

@keyframes bounce {
  0%, 100% { transform: translateY(0) rotate(var(--r, 3deg)); }
  50% { transform: translateY(-8px) rotate(var(--r, 3deg)); }
}

.hero-float-card.card-1 { --r: 4deg; }
.hero-float-card.card-2 { --r: -3deg; }

/* ── TRUST BAR ─────────────────────── */
.trust-bar {
  text-align: center;
  padding: 2.5rem 2rem 3.5rem;
  max-width: 800px;
  margin: 0 auto;
}

.trust-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.trust-stat { text-align: center; }

.trust-stat .num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--pop-pink);
}

.trust-stat .label {
  font-size: 0.78rem;
  color: var(--ink-soft);
  margin-top: 0.2rem;
  font-weight: 500;
}

/* ── SECTIONS SHARED ───────────────── */
section { padding: 5rem 2rem; }

.section-label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--mint-dark);
  background: var(--mint-light);
  display: inline-block;
  padding: 0.3rem 0.8rem;
  border-radius: 6px;
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.15;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
  font-weight: 700;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--ink-soft);
  max-width: 560px;
  line-height: 1.7;
  font-weight: 300;
}

.section-center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ── ABOUT ─────────────────────────── */
.about {
  background: var(--white);
  position: relative;
}

.about::before {
  content: '';
  position: absolute;
  top: -40px;
  left: 0; right: 0;
  height: 80px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.about-inner { max-width: 900px; margin: 0 auto; }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}

.about-card {
  background: var(--cloud);
  border-radius: 20px;
  padding: 2rem;
  border: 2px solid var(--border-fun);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.about-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 4px;
}

.about-card:nth-child(1)::before { background: var(--pop-pink); }
.about-card:nth-child(2)::before { background: var(--sunny); }
.about-card:nth-child(3)::before { background: var(--mint); }
.about-card:nth-child(4)::before { background: var(--grape); }

.about-card:hover {
  transform: translateY(-6px) rotate(-0.5deg);
  box-shadow: 0 12px 30px rgba(26,26,46,0.08);
  border-color: transparent;
}

.about-card-icon { font-size: 2rem; margin-bottom: 1rem; }

.about-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 0.6rem;
  font-weight: 700;
}

.about-card p {
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.65;
}

/* ── SERVICES / PRICING ────────────── */
.services { background: var(--cloud); }
.services-inner { max-width: 1100px; margin: 0 auto; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.price-card {
  background: var(--white);
  border-radius: 24px;
  padding: 2.5rem 2rem;
  border: 2px solid var(--border-fun);
  text-align: center;
  position: relative;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.price-card:hover {
  transform: translateY(-8px) rotate(-0.5deg);
  box-shadow: 0 16px 40px rgba(26,26,46,0.08);
}

.price-card.featured {
  border: 3px solid var(--pop-pink);
  background: linear-gradient(180deg, var(--white) 0%, rgba(232,52,90,0.03) 100%);
  transform: scale(1.03);
}

.price-card.featured:hover { transform: scale(1.05) translateY(-6px); }

.price-card.featured::before {
  content: attr(data-badge);
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%) rotate(-2deg);
  background: var(--pop-pink);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 1.2rem;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(232,52,90,0.25);
}

.price-card-level {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mint-dark);
  margin-bottom: 0.4rem;
}

.price-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.price-card .price {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--mint-dark);
  margin-bottom: 0.3rem;
  font-weight: 700;
}

.price-card .price-per {
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin-bottom: 1.5rem;
}

.price-card ul { list-style: none; text-align: left; margin-bottom: 2rem; }

.price-card ul li {
  font-size: 0.86rem;
  color: var(--ink-soft);
  padding: 0.5rem 0;
  border-bottom: 1px dashed rgba(26,26,46,0.08);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.price-card ul li::before {
  content: '✓';
  color: var(--mint);
  font-weight: 800;
  font-size: 0.9rem;
}

.price-card .btn-primary { width: 100%; justify-content: center; }

/* ── VIDEOS ────────────────────────── */
.videos { background: var(--white); }
.videos-inner { max-width: 1000px; margin: 0 auto; }
.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  align-items: start;
}
.video-card {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  background: var(--cloud);
  border: 2px solid var(--border-fun);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.video-card:hover {
  transform: translateY(-5px) rotate(-0.5deg);
  box-shadow: 0 12px 30px rgba(26,26,46,0.08);
}
.video-placeholder {
  width: 100%;
  background: linear-gradient(135deg, var(--grape-light) 0%, var(--mint-light) 50%, var(--sunny-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.video-card .tiktok-embed,
.video-card blockquote {
  width: 100% !important;
  min-width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
}
.video-card iframe {
  width: 100% !important;
  max-width: 100% !important;
}
.play-btn {
  width: 64px; height: 64px;
  border-radius: 16px;
  background: var(--pop-pink);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(232,52,90,0.3);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform: rotate(-3deg);
}
.video-placeholder:hover .play-btn { transform: rotate(0deg) scale(1.15); }
.play-btn svg { width: 24px; height: 24px; fill: var(--white); margin-left: 3px; }
.video-card-info { padding: 1.2rem 1.5rem; }
.video-card-info .tag {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grape);
  background: var(--grape-light);
  display: inline-block;
  padding: 0.2rem 0.5rem;
  border-radius: 5px;
  margin-bottom: 0.4rem;
}
.video-card-info h3 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; }
.video-card-info p { font-size: 0.82rem; color: var(--ink-soft); margin-top: 0.3rem; line-height: 1.5; }

/* ── CALENDAR ──────────────────────── */
.calendar-section {
  background: #0D0D1A;
  position: relative;
  overflow: visible;
  padding: 6rem 2rem;
}

.calendar-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 60px;
  background: linear-gradient(180deg, var(--cloud) 0%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}

.calendar-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 10% 20%, white 50%, transparent 100%),
    radial-gradient(2px 2px at 25% 45%, rgba(255,255,255,0.9) 50%, transparent 100%),
    radial-gradient(1px 1px at 40% 15%, white 50%, transparent 100%),
    radial-gradient(1.5px 1.5px at 55% 65%, rgba(255,255,255,0.7) 50%, transparent 100%),
    radial-gradient(2px 2px at 70% 30%, white 50%, transparent 100%),
    radial-gradient(1px 1px at 85% 55%, rgba(255,255,255,0.8) 50%, transparent 100%),
    radial-gradient(1.5px 1.5px at 15% 75%, rgba(255,255,255,0.6) 50%, transparent 100%),
    radial-gradient(1px 1px at 60% 85%, white 50%, transparent 100%),
    radial-gradient(2px 2px at 90% 10%, rgba(255,255,255,0.7) 50%, transparent 100%),
    radial-gradient(1px 1px at 35% 90%, rgba(255,255,255,0.5) 50%, transparent 100%),
    radial-gradient(1.5px 1.5px at 75% 75%, white 50%, transparent 100%),
    radial-gradient(1px 1px at 5% 50%, rgba(255,255,255,0.8) 50%, transparent 100%),
    radial-gradient(2px 2px at 48% 35%, rgba(255,255,255,0.9) 50%, transparent 100%),
    radial-gradient(1px 1px at 82% 80%, white 50%, transparent 100%),
    radial-gradient(1.5px 1.5px at 20% 60%, rgba(255,255,255,0.6) 50%, transparent 100%);
  pointer-events: none;
  z-index: 0;
  animation: starsTwinkle 3s ease-in-out infinite alternate;
}

@keyframes starsTwinkle {
  0% { opacity: 0.5; }
  100% { opacity: 1; }
}

.calendar-nebula {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(123,45,139,0.35) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 60%, rgba(91,141,239,0.25) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(232,52,90,0.2) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 20%, rgba(46,196,182,0.15) 0%, transparent 40%);
  background-size: 200% 200%;
  animation: nebulaShift 20s ease infinite;
  pointer-events: none;
  z-index: 0;
}

@keyframes nebulaShift {
  0% { background-position: 0% 50%; }
  33% { background-position: 100% 30%; }
  66% { background-position: 50% 100%; }
  100% { background-position: 0% 50%; }
}

.calendar-section .section-label { color: var(--sunny); background: rgba(255,182,39,0.15); }
.calendar-section .section-title { color: var(--cloud); }
.calendar-section .section-subtitle { color: rgba(250,251,255,0.6); }
.calendar-inner { max-width: 900px; margin: 0 auto; position: relative; z-index: 1; }


/* ── CALENDAR FRAME ────────────────── */
#calendly-container {
  min-height: 750px;
  position: relative;
  padding: 0;
  border-radius: 24px;
  overflow: visible;
  background: none;
  border: 1.5px solid rgba(255,255,255,0.15);
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

#calendly-container .calendly-inline-widget,
#calendly-container iframe {
  position: relative;
  z-index: 1;
  min-width: 320px;
  width: 100%;
  height: 750px !important;
  border: none;
  border-radius: 24px;
}

.bubble {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.4);
  pointer-events: none;
  z-index: 2;
  animation: bubbleFloat linear infinite;
}

.bubble:nth-child(1) { width: 40px; height: 40px; left: -20px; bottom: 20%; animation-duration: 7s; animation-delay: 0s; background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.7), rgba(232,52,90,0.3) 60%, transparent); }
.bubble:nth-child(2) { width: 25px; height: 25px; left: 5%; bottom: 40%; animation-duration: 9s; animation-delay: 1s; background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.7), rgba(46,196,182,0.3) 60%, transparent); }
.bubble:nth-child(3) { width: 55px; height: 55px; right: -25px; bottom: 30%; animation-duration: 8s; animation-delay: 0.5s; background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.7), rgba(123,45,139,0.3) 60%, transparent); }
.bubble:nth-child(4) { width: 20px; height: 20px; right: 8%; bottom: 60%; animation-duration: 10s; animation-delay: 2s; background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.7), rgba(255,182,39,0.3) 60%, transparent); }
.bubble:nth-child(5) { width: 35px; height: 35px; left: -15px; bottom: 70%; animation-duration: 7.5s; animation-delay: 3s; background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.7), rgba(91,141,239,0.3) 60%, transparent); }
.bubble:nth-child(6) { width: 30px; height: 30px; right: -12px; bottom: 50%; animation-duration: 8.5s; animation-delay: 1.5s; background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.7), rgba(232,52,90,0.3) 60%, transparent); }
.bubble:nth-child(7) { width: 18px; height: 18px; left: 10%; bottom: 15%; animation-duration: 11s; animation-delay: 4s; background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.7), rgba(46,196,182,0.3) 60%, transparent); }
.bubble:nth-child(8) { width: 45px; height: 45px; right: 5%; bottom: 80%; animation-duration: 9.5s; animation-delay: 0.8s; background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.7), rgba(255,182,39,0.3) 60%, transparent); }

@keyframes bubbleFloat {
  0% { transform: translateY(0) scale(1); opacity: 0; }
  10% { opacity: 0.7; }
  50% { transform: translateY(-120px) scale(1.1); opacity: 0.5; }
  90% { opacity: 0.2; }
  100% { transform: translateY(-250px) scale(0.8); opacity: 0; }
}


/* ── CONTACT ───────────────────────── */
.contact {
  background: var(--ink);
  color: var(--cloud);
  position: relative;
}

.contact::before {
  content: '';
  position: absolute;
  top: -40px;
  left: 0; right: 0;
  height: 80px;
  background: var(--ink);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.contact .section-label { color: var(--sunny); background: rgba(255,182,39,0.15); }
.contact .section-title { color: var(--cloud); }
.contact .section-subtitle { color: rgba(250,251,255,0.55); }

.contact-inner { max-width: 600px; margin: 0 auto; }

.contact-form {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }

.form-field label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 0.4rem;
  color: rgba(250,251,255,0.65);
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 0.85rem 1rem;
  background: rgba(250,251,255,0.08);
  border: 2px solid rgba(250,251,255,0.15);
  border-radius: 14px;
  color: #FAFBFF;
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: all 0.3s;
  outline: none;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(250,251,255,0.35);
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--pop-pink);
  box-shadow: 0 0 0 4px rgba(232,52,90,0.15);
}

.form-field textarea { resize: vertical; min-height: 120px; }

.form-field select option { background: var(--ink); color: var(--cloud); }

.contact-form .btn-primary {
  align-self: flex-start;
  margin-top: 0.5rem;
  background: var(--sunny);
  color: var(--ink);
  box-shadow: 0 4px 15px rgba(255,182,39,0.3);
}

.contact-form .btn-primary:hover {
  background: var(--sunny-dark);
  box-shadow: 0 8px 25px rgba(255,182,39,0.4);
}

/* ── FOOTER ────────────────────────── */
footer {
  background: var(--ink);
  border-top: 1px solid rgba(250,251,255,0.06);
  padding: 2rem;
  text-align: center;
}

footer p { font-size: 0.78rem; color: rgba(250,251,255,0.3); }
footer a { color: var(--pop-pink); text-decoration: none; }

/* ── BILINGUAL TOGGLE ──────────────── */
[data-lang="es"] { display: none; }
body.lang-es [data-lang="en"] { display: none; }
body.lang-es [data-lang="es"] { display: initial; }
body.lang-es [data-lang-block="en"] { display: none; }
body.lang-es [data-lang-block="es"] { display: block; }
[data-lang-block="es"] { display: none; }
body.lang-es [data-lang-block="en"] { display: none; }
body.lang-es [data-lang-block="es"] { display: block; }

body.lang-es [data-lang-block="es"].flex-li { display: flex; }
[data-lang-block="en"].flex-li { display: flex; }
[data-lang-block="es"].flex-li { display: none; }
body.lang-es [data-lang-block="en"].flex-li { display: none; }
body.lang-es [data-lang-block="es"].flex-li { display: flex; }

/* ── MOBILE ────────────────────────── */
@media (max-width: 1024px) {

  .nav-links { display: none; }
  .hamburger { display: flex; }
  html, body { overflow-x: hidden; width: 100%; }
  #calendly-container { padding: 0; border: none; box-shadow: none; border-radius: 16px; overflow: hidden; }
  .calendar-inner { padding: 0; max-width: 100%; overflow: hidden; }
  .hero-photo-frame { box-shadow: 0 15px 40px rgba(26,26,46,0.12); }
  .hero { min-height: auto; padding: 6rem 2rem 3rem; }
  .hero-inner { grid-template-columns: 1fr; gap: 2rem; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(26,26,46,0.95);
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    gap: 1rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    backdrop-filter: blur(20px);
  }

  .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 2.5rem; }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-photo-frame { width: 280px; height: 280px; }
  .hero-float-card { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
  .price-card.featured { transform: scale(1); }
  .video-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .trust-stats { gap: 2rem; }
}

#unicorn-runner {
  position: fixed;
  top: -120px;
  left: -120px;
  z-index: 10000;
  width: 100px;
  height: 100px;
  pointer-events: none;
  filter: drop-shadow(0 4px 12px rgba(123,45,139,0.2));
}

#unicorn-runner.run {
  animation: unicornDiagonal 4.5s cubic-bezier(0.2, 0, 0.3, 1) forwards;
}

#unicorn-runner {
  position: fixed;
  top: 10vh;
  left: -180px;
  z-index: 10000;
  width: 160px;
  height: 150px;
  pointer-events: none;
}

#unicorn-runner.run {
  animation: unicornDiagonal 10s cubic-bezier(0.25, 0, 0.25, 1) forwards;
}

@keyframes unicornDiagonal {
  0%   { top: 10vh; left: -180px; opacity: 0; transform: scale(0.5) scaleX(1); }
  3%   { opacity: 1; }
  12%  { top: 12vh; left: 15vw;  transform: scale(0.55) scaleX(1); }
  22%  { top: 22vh; left: 60vw;  transform: scale(0.6) scaleX(1); }
  30%  { top: 30vh; left: 25vw;  transform: scale(0.65) scaleX(-1); }
  40%  { top: 38vh; left: 65vw;  transform: scale(0.7) scaleX(1); }
  50%  { top: 48vh; left: 20vw;  transform: scale(0.75) scaleX(-1); }
  60%  { top: 56vh; left: 68vw;  transform: scale(0.8) scaleX(1); }
  70%  { top: 65vh; left: 30vw;  transform: scale(0.85) scaleX(-1); }
  78%  { top: 74vh; left: 70vw;  transform: scale(0.9) scaleX(1); }
  85%  { top: calc(100vh - 130px); left: calc(100vw - 120px); transform: scale(1) scaleX(1); }
  85%  { top: calc(100vh - 130px); left: calc(100vw - 120px); transform: scale(1) scaleX(-1); }
  93%  { top: calc(100vh - 130px); left: calc(100vw - 120px); transform: scale(1) scaleX(-1); }
  100% { top: calc(100vh - 130px); left: calc(100vw - 120px); opacity: 1; transform: scale(1) scaleX(-1); }
}

/* ── UNICORN DESIGN ────────────────── */
.uc { position: relative; width: 160px; height: 150px; animation: gracefulLeap 1.2s cubic-bezier(0.35,0,0.25,1) infinite; }
@keyframes gracefulLeap {
  0% { transform: translateY(0) rotate(0deg); }
  15% { transform: translateY(-3px) rotate(-2deg); }
  40% { transform: translateY(-18px) rotate(-4deg); }
  55% { transform: translateY(-14px) rotate(-2deg); }
  75% { transform: translateY(-4px) rotate(1deg); }
  100% { transform: translateY(0) rotate(0deg); }
}
.uc-body { position:absolute; width:82px; height:43px; background:linear-gradient(160deg,#F8F0FC,#E4D0ED); border-radius:42px 38px 36px 32px; top:52px; left:22px; }
.uc-body::after { content:''; position:absolute; width:40px; height:16px; background:rgba(255,255,255,0.3); border-radius:50%; top:6px; left:18px; }
.uc-neck { position:absolute; width:24px; height:42px; background:linear-gradient(170deg,#F8F0FC,#F0E0F5); top:24px; left:82px; border-radius:14px 16px 6px 4px; transform:rotate(12deg); }
.uc-head { position:absolute; width:32px; height:27px; background:linear-gradient(150deg,#FAF3FC,#F0E0F5); border-radius:16px 18px 12px 10px; top:10px; left:94px; }
.uc-muzzle { position:absolute; width:20px; height:20px; background:linear-gradient(160deg,#F5EAF8,#EDD8F0); border-radius:10px 13px 12px 9px; top:22px; left:108px; z-index:2; }
.uc-muzzle::after { content:''; position:absolute; width:10px; height:6px; background:rgba(255,255,255,0.25); border-radius:50%; top:3px; left:4px; }
.uc-nostril { position:absolute; width:3px; height:3px; background:rgba(123,45,139,0.25); border-radius:50%; top:30px; left:123px; z-index:3; }
.uc-mouth { position:absolute; width:8px; height:3px; border-bottom:1.5px solid rgba(123,45,139,0.2); border-radius:0 0 6px 6px; top:35px; left:116px; z-index:3; }
.uc-eye { position:absolute; width:10px; height:12px; background:#1A1A2E; border-radius:50% 50% 50% 45%; top:15px; left:110px; z-index:3; }
.uc-eye::before { content:''; position:absolute; width:4px; height:5px; background:white; border-radius:50%; top:2px; left:1px; }
.uc-eye::after { content:''; position:absolute; width:2px; height:2px; background:white; border-radius:50%; top:7px; left:5px; opacity:0.7; }
.uc-lash { position:absolute; width:6px; height:2px; border-top:1.5px solid #1A1A2E; border-radius:50% 50% 0 0; top:13px; left:112px; z-index:4; }
.uc-blush { position:absolute; width:10px; height:6px; background:rgba(232,52,90,0.15); border-radius:50%; top:26px; left:108px; z-index:3; }
.uc-ear { position:absolute; width:9px; height:18px; background:linear-gradient(150deg,#F0E0F5,#E4D0ED); border-radius:5px 6px 2px 2px; top:2px; left:100px; transform:rotate(-20deg); z-index:1; }
.uc-ear::after { content:''; position:absolute; width:5px; height:11px; background:rgba(232,52,90,0.1); border-radius:3px 4px 1px 1px; top:3px; left:2px; }
.uc-horn { position:absolute; top:-12px; left:103px; z-index:5; transform:rotate(15deg); }
.uc-horn-base { width:0; height:0; border-left:4px solid transparent; border-right:4px solid transparent; border-bottom:28px solid #FFD700; filter:drop-shadow(0 0 4px rgba(255,215,0,0.5)); }
.uc-mane { position:absolute; top:2px; left:65px; z-index:1; }
.mn { position:absolute; border-radius:0 35px 35px 15px; animation:maneGrace 1.2s ease-in-out infinite; transform-origin:top right; }
.mn1 { width:30px; height:9px; background:#E8345A; top:2px; left:15px; animation-delay:0s; }
.mn2 { width:36px; height:8px; background:#FFB627; top:9px; left:10px; animation-delay:0.08s; }
.mn3 { width:38px; height:9px; background:#2EC4B6; top:16px; left:6px; animation-delay:0.16s; }
.mn4 { width:36px; height:8px; background:#7B2D8B; top:23px; left:4px; animation-delay:0.24s; }
.mn5 { width:32px; height:8px; background:#5B8DEF; top:30px; left:6px; animation-delay:0.12s; }
.mn6 { width:28px; height:7px; background:#E8345A; top:37px; left:9px; animation-delay:0.2s; }
@keyframes maneGrace {
  0%,100% { transform:rotate(0deg) translateX(0); }
  30% { transform:rotate(-6deg) translateX(-6px); }
  60% { transform:rotate(-10deg) translateX(-10px); }
}
.uc-tail { position:absolute; top:40px; left:-5px; z-index:0; }
.tl { position:absolute; border-radius:35px 0 15px 35px; animation:tailGrace 1.2s ease-in-out infinite; transform-origin:top right; }
.tl1 { width:32px; height:7px; background:#E8345A; top:0; left:0; animation-delay:0s; }
.tl2 { width:38px; height:7px; background:#FFB627; top:6px; left:-4px; animation-delay:0.08s; }
.tl3 { width:36px; height:7px; background:#2EC4B6; top:12px; left:-6px; animation-delay:0.16s; }
.tl4 { width:33px; height:7px; background:#7B2D8B; top:18px; left:-4px; animation-delay:0.24s; }
.tl5 { width:30px; height:7px; background:#5B8DEF; top:24px; left:-2px; animation-delay:0.12s; }
@keyframes tailGrace {
  0%,100% { transform:rotate(0deg) translateX(0); }
  25% { transform:rotate(-8deg) translateX(-7px); }
  50% { transform:rotate(-15deg) translateX(-12px) translateY(4px); }
}
.uc-leg { position:absolute; width:10px; border-radius:5px 5px 4px 4px; transform-origin:top center; }
.uc-hoof { position:absolute; bottom:-1px; left:1px; width:8px; height:6px; background:#E8345A; border-radius:3px 3px 4px 4px; }
.leg-fr { height:38px; background:linear-gradient(180deg,#EDD8F0,#E4D0ED); top:84px; left:88px; animation:legFG 1.2s cubic-bezier(0.35,0,0.25,1) infinite; }
.leg-fl { height:38px; background:linear-gradient(180deg,#E4D0ED,#DBC4E6); top:84px; left:79px; animation:legFG 1.2s cubic-bezier(0.35,0,0.25,1) infinite 0.6s; z-index:-1; opacity:0.85; }
.leg-br { height:38px; background:linear-gradient(180deg,#EDD8F0,#E4D0ED); top:84px; left:40px; animation:legBG 1.2s cubic-bezier(0.35,0,0.25,1) infinite; }
.leg-bl { height:38px; background:linear-gradient(180deg,#E4D0ED,#DBC4E6); top:84px; left:31px; animation:legBG 1.2s cubic-bezier(0.35,0,0.25,1) infinite 0.6s; z-index:-1; opacity:0.85; }
@keyframes legFG {
  0% { transform:rotate(-5deg); }
  20% { transform:rotate(-35deg) translateY(-4px); }
  40% { transform:rotate(-50deg) translateY(-7px); }
  55% { transform:rotate(-20deg); }
  75% { transform:rotate(20deg); }
  100% { transform:rotate(-5deg); }
}
@keyframes legBG {
  0% { transform:rotate(15deg); }
  20% { transform:rotate(30deg); }
  40% { transform:rotate(10deg); }
  55% { transform:rotate(-30deg) translateY(-4px); }
  75% { transform:rotate(-45deg) translateY(-6px); }
  100% { transform:rotate(15deg); }
}
.uc-sp { position:absolute; border-radius:50%; animation:ucSparkle 2s ease-in-out infinite; }
.sp1 { width:4px; height:4px; background:#FFB627; top:10px; left:3px; animation-delay:0s; }
.sp2 { width:3px; height:3px; background:#E8345A; top:50px; left:-4px; animation-delay:0.5s; }
.sp3 { width:5px; height:5px; background:#2EC4B6; top:85px; left:7px; animation-delay:1s; }
.sp4 { width:3px; height:3px; background:#FFD700; top:0; left:125px; animation-delay:0.3s; }
.sp5 { width:4px; height:4px; background:#7B2D8B; top:35px; left:-7px; animation-delay:0.7s; }
@keyframes ucSparkle {
  0%,100% { transform:scale(0); opacity:0; }
  50% { transform:scale(1.3); opacity:1; }
}

#sparkle-trail {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 9999;
}

.trail-sparkle {
  position: absolute;
  border-radius: 50%;
  animation: trailFade 1s ease-out forwards;
  pointer-events: none;
}

.trail-star {
  position: absolute;
  pointer-events: none;
  animation: starSpin 0.9s ease-out forwards;
}

@keyframes trailFade {
  from { transform: scale(1); opacity: 0.9; }
  to { transform: scale(0) translateY(-30px); opacity: 0; }
}

@keyframes starSpin {
  from { transform: scale(1) rotate(0deg); opacity: 0.8; }
  to { transform: scale(0) rotate(180deg) translateY(-25px); opacity: 0; }
}

/* ═══ CHISPITAS 🦄 · Unicorn Chatbot v3 · PatriciaSpanish ═══ */
/* ── SETTLED BUTTON ────────────────── */
#unicorn-wrap {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9998;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s;
}

#unicorn-wrap.visible {
  opacity: 1;
  pointer-events: auto;
}

#unicorn-hint {
  position: relative;
  background: #1A1A2E;
  color: #FAFBFF;
  padding: 8px 14px;
  border-radius: 14px 14px 4px 14px;
  font-family: 'Sora', system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  max-width: 210px;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(26,26,46,0.15);
  animation: hintPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes hintPop {
  from { opacity: 0; transform: scale(0.7) translateY(10px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

#unicorn-btn {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #FFB627 0%, #E8345A 40%, #7B2D8B 100%);
  box-shadow: 0 6px 25px rgba(232,52,90,0.3);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  animation: settledBounce 3s ease-in-out infinite;
  padding: 0;
  overflow: visible;
}

#unicorn-btn:hover {
  transform: scale(1.15) rotate(-5deg) !important;
  box-shadow: 0 12px 35px rgba(232,52,90,0.4);
}

@keyframes settledBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

.btn-sparkle {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  pointer-events: none;
}

.btn-sparkle:nth-child(2) { top: -5px; right: 8px; background: #FFB627; animation: sparkleFloat 2.5s ease-in-out infinite; }
.btn-sparkle:nth-child(3) { bottom: 0; left: -4px; background: #2EC4B6; animation: sparkleFloat 2.5s ease-in-out infinite 0.8s; }
.btn-sparkle:nth-child(4) { top: 10px; left: -7px; background: #7B2D8B; animation: sparkleFloat 2.5s ease-in-out infinite 1.5s; }
.btn-sparkle:nth-child(5) { top: -3px; left: 15px; background: #E8345A; animation: sparkleFloat 2.5s ease-in-out infinite 0.4s; width: 6px; height: 6px; }
.btn-sparkle:nth-child(6) { bottom: -4px; right: 12px; background: #FFB627; animation: sparkleFloat 2.5s ease-in-out infinite 1.1s; width: 5px; height: 5px; }

@keyframes sparkleFloat {
  0%, 100% { transform: scale(0); opacity: 0; }
  20% { transform: scale(1.2); opacity: 1; }
  40% { transform: scale(0.8); opacity: 0.8; }
  60% { transform: scale(0); opacity: 0; }
}

/* ── CHAT WINDOW ───────────────────── */
#unicorn-chat {
  display: none;
  position: fixed;
  bottom: 105px;
  right: 24px;
  width: 360px;
  max-height: 500px;
  background: #FAFBFF;
  border-radius: 24px;
  box-shadow: 0 16px 50px rgba(26,26,46,0.18);
  z-index: 9999;
  overflow: hidden;
  font-family: 'Sora', system-ui, sans-serif;
  animation: chatOpen 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 2px solid rgba(26,26,46,0.08);
  flex-direction: column;
}

#unicorn-chat.open { display: flex; }

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

.chat-header {
  background: linear-gradient(135deg, #FFB627 0%, #E8345A 50%, #7B2D8B 100%);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
}

.chat-header-emoji { font-size: 1.5rem; }
.chat-header-text { flex: 1; }
.chat-header-name { font-weight: 700; font-size: 0.9rem; }
.chat-header-status { font-size: 0.7rem; opacity: 0.85; }

.chat-close {
  background: rgba(255,255,255,0.2);
  border: none;
  color: white;
  width: 28px; height: 28px;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.chat-close:hover { background: rgba(255,255,255,0.35); }

.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 320px;
  min-height: 200px;
}

.chat-msg {
  max-width: 85%;
  padding: 10px 14px;
  border-radius: 16px;
  font-size: 0.82rem;
  line-height: 1.55;
  animation: msgPop 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes msgPop {
  from { opacity: 0; transform: scale(0.9) translateY(8px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.chat-msg.bot { background: #F0E0F5; color: #1A1A2E; align-self: flex-start; border-bottom-left-radius: 4px; }
.chat-msg.user { background: #E8345A; color: white; align-self: flex-end; border-bottom-right-radius: 4px; }

.chat-msg.typing {
  background: #F0E0F5;
  align-self: flex-start;
  border-bottom-left-radius: 4px;
  display: flex;
  gap: 4px;
  padding: 12px 18px;
}

.typing-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #7B2D8B;
  animation: typingBounce 1.2s ease-in-out infinite;
}
.typing-dot:nth-child(2) { animation-delay: 0.15s; }
.typing-dot:nth-child(3) { animation-delay: 0.3s; }

@keyframes typingBounce {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-6px); opacity: 1; }
}

.chat-input-wrap {
  padding: 10px 14px;
  border-top: 1px solid rgba(26,26,46,0.06);
  display: flex;
  gap: 8px;
}

.chat-input {
  flex: 1;
  border: 2px solid rgba(26,26,46,0.1);
  border-radius: 100px;
  padding: 9px 16px;
  font-family: 'Sora', system-ui, sans-serif;
  font-size: 0.82rem;
  outline: none;
  color: #1A1A2E;
  transition: border-color 0.3s;
}

.chat-input::placeholder { color: rgba(26,26,46,0.3); }
.chat-input:focus { border-color: #E8345A; }

.chat-send {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: none;
  background: #E8345A;
  color: white;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.chat-send:hover { background: #C42847; transform: scale(1.08); }
.chat-send:disabled { opacity: 0.5; cursor: not-allowed; }

@media (max-width: 480px) {
  #unicorn-chat { right: 8px; left: 8px; bottom: 100px; width: auto; }
  #unicorn-runner { width: 70px; height: 70px; }
  #unicorn-wrap { bottom: 16px; right: 16px; }
  #unicorn-btn { width: 60px; height: 60px; }
}

/* ── NAV SPARKLES ──────────────────── */
.nav-links a::before {
  content: '✦';
  font-size: 0.5rem;
  margin-right: 4px;
  opacity: 0;
  transition: opacity 0.3s;
  vertical-align: middle;
}

.nav-links a:nth-child(1)::before { color: var(--pop-pink); }
.nav-links a:nth-child(2)::before { color: var(--sunny); }
.nav-links a:nth-child(3)::before { color: var(--mint); }
.nav-links a:nth-child(4)::before { color: var(--grape); }

.nav-links a:hover::before { opacity: 1; }

.nav-logo {
  position: relative;
}

.nav-logo::after {
  content: '✨';
  font-size: 0.7rem;
  position: absolute;
  top: -6px;
  right: -16px;
  animation: logoSparkle 2s ease-in-out infinite;
}

@keyframes logoSparkle {
  0%, 100% { opacity: 0.4; transform: scale(0.8) rotate(0deg); }
  50% { opacity: 1; transform: scale(1.2) rotate(15deg); }
}


/* ── REVIEWS ───────────────────────── */
.reviews {
  background:
    radial-gradient(ellipse at 20% 30%, rgba(232,52,90,0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 60%, rgba(123,45,139,0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(46,196,182,0.05) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 20%, rgba(255,182,39,0.05) 0%, transparent 40%),
    linear-gradient(135deg, #FFF8FC 0%, #F8F0FF 25%, #F0F8FF 50%, #FFF8F0 75%, #FFF8FC 100%);
  background-size: 200% 200%, 200% 200%, 200% 200%, 200% 200%, 300% 300%;
  animation: reviewsShimmer 15s ease infinite;
  position: relative;
  overflow: hidden;
}

@keyframes reviewsShimmer {
  0% { background-position: 0% 50%, 100% 50%, 50% 0%, 0% 100%, 0% 0%; }
  33% { background-position: 100% 30%, 0% 70%, 80% 100%, 100% 0%, 50% 50%; }
  66% { background-position: 50% 100%, 50% 0%, 0% 50%, 50% 50%, 100% 100%; }
  100% { background-position: 0% 50%, 100% 50%, 50% 0%, 0% 100%, 0% 0%; }
}

.reviews::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(4px 4px at 8% 15%, rgba(232,52,90,0.6) 50%, transparent 100%),
    radial-gradient(3px 3px at 22% 65%, rgba(255,182,39,0.7) 50%, transparent 100%),
    radial-gradient(4px 4px at 35% 25%, rgba(123,45,139,0.6) 50%, transparent 100%),
    radial-gradient(3px 3px at 48% 80%, rgba(46,196,182,0.6) 50%, transparent 100%),
    radial-gradient(5px 5px at 62% 12%, rgba(255,215,0,0.7) 50%, transparent 100%),
    radial-gradient(4px 4px at 75% 55%, rgba(232,52,90,0.5) 50%, transparent 100%),
    radial-gradient(3px 3px at 88% 35%, rgba(91,141,239,0.6) 50%, transparent 100%),
    radial-gradient(4px 4px at 15% 85%, rgba(255,182,39,0.6) 50%, transparent 100%),
    radial-gradient(5px 5px at 55% 45%, rgba(123,45,139,0.5) 50%, transparent 100%),
    radial-gradient(3px 3px at 92% 75%, rgba(46,196,182,0.7) 50%, transparent 100%),
    radial-gradient(4px 4px at 42% 55%, rgba(232,52,90,0.5) 50%, transparent 100%),
    radial-gradient(5px 5px at 5% 40%, rgba(255,215,0,0.6) 50%, transparent 100%),
    radial-gradient(3px 3px at 68% 90%, rgba(91,141,239,0.5) 50%, transparent 100%),
    radial-gradient(4px 4px at 82% 8%, rgba(46,196,182,0.6) 50%, transparent 100%);
  pointer-events: none;
  z-index: 0;
  animation: reviewSparkles 2s ease-in-out infinite alternate;
}

@keyframes reviewSparkles {
  0% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
  100% { opacity: 0.3; transform: scale(1); }
}

@keyframes reviewSparkles {
  0% { opacity: 0.4; }
  100% { opacity: 1; }
}

.reviews-inner { max-width: 1100px; margin: 0 auto; position: relative; z-index: 1; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.review-card {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 2rem;
  border: 2px solid rgba(255,255,255,0.6);
  text-align: left;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
}

.review-card:hover {
  transform: translateY(-6px) rotate(-0.5deg);
  box-shadow: 0 12px 30px rgba(123,45,139,0.1);
  background: rgba(255,255,255,0.95);
}

.review-card::before {
  content: '"';
  position: absolute;
  top: 12px;
  right: 20px;
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--pop-pink);
  opacity: 0.15;
  line-height: 1;
}

.review-stars { font-size: 0.9rem; margin-bottom: 0.8rem; }

.review-card p {
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.7;
  font-style: italic;
}

.review-author {
  margin-top: 1.2rem;
  font-size: 0.85rem;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.review-author strong {
  font-family: var(--font-display);
  font-weight: 700;
}

@media (max-width: 768px) {
  .reviews-grid { grid-template-columns: 1fr; max-width: 500px; margin-left: auto; margin-right: auto; }
}

.rev-lang-btns {
  margin-top: 0.8rem;
  display: flex;
  gap: 0.4rem;
}

.rev-lang-btns button {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 6px;
  border: 1.5px solid var(--border-fun);
  background: transparent;
  color: var(--ink-soft);
  cursor: pointer;
  transition: all 0.2s;
}

.rev-lang-btns button:hover {
  background: var(--pop-pink);
  color: white;
  border-color: var(--pop-pink);
}

.rev-lang-btns button.active {
  background: var(--pop-pink);
  color: white;
  border-color: var(--pop-pink);
}

.rev-sparkle {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  animation: revFloat 4s ease-in-out infinite;
}

.rs1  { top: 8%; left: 5%; color: #E8345A; font-size: 1.2rem; animation-delay: 0s; }
.rs2  { top: 15%; right: 8%; color: #FFB627; font-size: 0.9rem; animation-delay: 0.5s; }
.rs3  { top: 35%; left: 3%; color: #2EC4B6; font-size: 1rem; animation-delay: 1s; }
.rs4  { top: 50%; right: 4%; color: #7B2D8B; font-size: 1.3rem; animation-delay: 1.5s; }
.rs5  { top: 70%; left: 7%; color: #FFD700; font-size: 1.1rem; animation-delay: 0.3s; }
.rs6  { top: 25%; left: 92%; color: #E8345A; font-size: 0.8rem; animation-delay: 0.8s; }
.rs7  { top: 60%; right: 6%; color: #2EC4B6; font-size: 1.2rem; animation-delay: 1.2s; }
.rs8  { top: 85%; left: 10%; color: #7B2D8B; font-size: 0.9rem; animation-delay: 0.6s; }
.rs9  { top: 45%; left: 1%; color: #FFB627; font-size: 1rem; animation-delay: 1.8s; }
.rs10 { top: 90%; right: 12%; color: #FFD700; font-size: 1.1rem; animation-delay: 0.4s; }

@keyframes revFloat {
  0%, 100% { transform: translateY(0) scale(0.5) rotate(0deg); opacity: 0.2; }
  25% { transform: translateY(-12px) scale(1.2) rotate(45deg); opacity: 1; }
  50% { transform: translateY(-5px) scale(0.9) rotate(90deg); opacity: 0.7; }
  75% { transform: translateY(-15px) scale(1.1) rotate(135deg); opacity: 0.9; }
}
.nav-login {
  color: #fff;
  opacity: 0.85;
  font-weight: 500;
  transition: opacity 0.2s;
}
.nav-login:hover { opacity: 1; }