:root {
  --pink-50: #fff5fb;
  --pink-100: #ffe3f2;
  --pink-200: #ffc9e5;
  --pink-300: #ff9fd0;
  --pink-400: #ff75b8;
  --pink-500: #f84c9f;
  --pink-600: #df2f87;
  --pink-700: #b61f6c;
  --plum: #4f1539;
  --ink: #2d1930;
  --muted: #785a72;
  --white: #ffffff;
  --shadow: 0 25px 70px rgba(198, 36, 121, 0.18);
  --radius-lg: 34px;
  --radius-md: 24px;
  --radius-sm: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 10%, rgba(255,255,255,.95), transparent 22%),
    linear-gradient(180deg, #fff7fc 0%, #ffeaf5 40%, #fffafd 100%);
  font-family: "Nunito", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

.container {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}

.section-pad {
  padding: 110px 0;
}

.noise {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.92' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

.cursor-glow {
  position: fixed;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(255, 112, 183, .22), rgba(255, 112, 183, 0) 68%);
  transition: opacity .2s ease;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: .35s ease;
}

.site-header.scrolled {
  background: rgba(255, 248, 252, .78);
  box-shadow: 0 14px 45px rgba(109, 27, 74, .09);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.navbar {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
}

.brand-icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: white;
  border-radius: 15px 15px 15px 5px;
  background: linear-gradient(135deg, var(--pink-400), var(--pink-600));
  box-shadow: 0 10px 22px rgba(232, 49, 139, .3);
  font-family: "Baloo 2", sans-serif;
  font-size: 25px;
  font-weight: 800;
  transform: rotate(-5deg);
}

.brand > span:last-child {
  display: grid;
  line-height: .9;
}

.brand strong {
  font-family: "Baloo 2", sans-serif;
  letter-spacing: .5px;
  font-size: 22px;
}

.brand small {
  margin-top: 5px;
  color: var(--pink-600);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 5px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
}

.nav-links a {
  position: relative;
  color: #5f4359;
  font-size: 14px;
  font-weight: 800;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  width: 0;
  height: 3px;
  transform: translateX(-50%);
  border-radius: 99px;
  background: var(--pink-500);
  transition: width .25s ease;
}

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

.nav-cta,
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  overflow: hidden;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-family: inherit;
  font-weight: 900;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.nav-cta {
  min-height: 44px;
  padding: 0 20px;
  color: white;
  background: var(--ink);
  font-size: 13px;
  box-shadow: 0 10px 30px rgba(45, 25, 48, .15);
}

.nav-cta:hover,
.btn:hover {
  transform: translateY(-3px);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 12px;
  border: 0;
  border-radius: 15px;
  background: white;
  box-shadow: 0 10px 30px rgba(102, 29, 70, .12);
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  border-radius: 99px;
  background: var(--ink);
  transition: .25s ease;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding-top: 145px;
  overflow: hidden;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  align-items: center;
  gap: 76px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: var(--pink-700);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.eyebrow span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: white;
  border-radius: 50%;
  background: var(--pink-500);
  box-shadow: 0 8px 20px rgba(248, 76, 159, .27);
  animation: spin-slow 8s linear infinite;
}

.hero h1,
.section-heading h2,
.contact-copy h2,
.social-copy h2,
.cta-card h2 {
  margin: 0;
  font-family: "Baloo 2", sans-serif;
  font-weight: 800;
  line-height: .98;
  letter-spacing: -2px;
}

.hero h1 {
  max-width: 650px;
  font-size: clamp(3.8rem, 7vw, 6.7rem);
  text-wrap: balance;
}

.title-line {
  display: block;
}

.mobile-title-break {
  display: none;
}

.gradient-text {
  color: transparent;
  background: linear-gradient(90deg, var(--pink-500), #ff8fca 45%, var(--pink-700));
  background-clip: text;
  -webkit-background-clip: text;
  background-size: 200% 100%;
  animation: gradient-shift 5s linear infinite;
}

.hero-copy > p {
  max-width: 590px;
  margin: 25px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn-primary {
  color: white;
  background: linear-gradient(135deg, var(--pink-400), var(--pink-600));
  box-shadow: 0 18px 35px rgba(224, 47, 135, .27);
}

.btn-primary:hover {
  box-shadow: 0 22px 44px rgba(224, 47, 135, .36);
}

.btn-soft {
  color: var(--pink-700);
  background: rgba(255, 255, 255, .78);
  border: 1px solid rgba(246, 81, 160, .15);
  box-shadow: 0 14px 35px rgba(127, 29, 82, .09);
}

.btn-icon {
  display: inline-grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.23);
}

.mini-trust {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 28px;
}

.avatar-stack {
  display: flex;
}

.avatar-stack span {
  display: grid;
  width: 39px;
  height: 39px;
  margin-left: -9px;
  place-items: center;
  color: white;
  border: 3px solid #fff7fb;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink-300), var(--pink-600));
  font-size: 15px;
}

.avatar-stack span:first-child {
  margin-left: 0;
}

.mini-trust p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.mini-trust strong {
  color: var(--ink);
  font-size: 13px;
}

.hero-visual {
  position: relative;
  display: grid;
  min-height: 590px;
  place-items: center;
  perspective: 1100px;
}

.image-card {
  position: relative;
  width: min(500px, 86vw);
  overflow: hidden;
  border: 12px solid rgba(255,255,255,.88);
  border-radius: 46px;
  background: white;
  box-shadow: 0 40px 100px rgba(184, 27, 106, .25);
  transform: rotate(3deg);
  transition: transform .18s ease-out;
  will-change: transform;
}

.image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 34px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.45);
  pointer-events: none;
}

.image-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 34px;
}

.card-ribbon {
  position: absolute;
  top: 28px;
  left: -62px;
  z-index: 3;
  width: 240px;
  padding: 11px 0;
  color: white;
  background: var(--ink);
  box-shadow: 0 10px 22px rgba(45,25,48,.2);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(-42deg);
}

.shine {
  position: absolute;
  top: -30%;
  left: -80%;
  width: 45%;
  height: 170%;
  z-index: 2;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.48), transparent);
  transform: rotate(18deg);
  animation: image-shine 5s ease-in-out infinite;
}

.orbit {
  position: absolute;
  z-index: -1;
  border: 1px dashed rgba(216, 39, 129, .35);
  border-radius: 50%;
  animation: orbit-spin 18s linear infinite;
}

.orbit span {
  position: absolute;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: white;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--pink-400), var(--pink-600));
  box-shadow: 0 12px 25px rgba(223, 47, 135, .25);
}

.orbit-one {
  width: 590px;
  height: 590px;
}

.orbit-one span {
  top: 8%;
  left: 15%;
}

.orbit-two {
  width: 700px;
  height: 700px;
  animation-duration: 26s;
  animation-direction: reverse;
}

.orbit-two span {
  right: 10%;
  bottom: 18%;
}

.floating-badge {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 13px 17px;
  border: 1px solid rgba(255,255,255,.85);
  border-radius: 18px;
  background: rgba(255,255,255,.82);
  box-shadow: 0 18px 40px rgba(121, 34, 82, .14);
  backdrop-filter: blur(14px);
  animation: float-y 4s ease-in-out infinite;
}

.floating-badge > span:first-child:not(.live-dot) {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 12px;
  background: var(--pink-100);
}

.floating-badge div {
  display: grid;
}

.floating-badge b {
  font-size: 13px;
}

.floating-badge small {
  color: var(--muted);
  font-size: 10px;
}

.badge-chat {
  left: -16px;
  bottom: 78px;
}

.badge-live {
  right: -7px;
  top: 92px;
  animation-delay: -2s;
}

.live-dot {
  width: 14px;
  height: 14px;
  border: 4px solid #ffd6e9;
  border-radius: 50%;
  background: #ff276f;
  box-shadow: 0 0 0 0 rgba(255, 39, 111, .4);
  animation: pulse 1.5s infinite;
}

.hero-bg-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  opacity: .75;
}

.shape-a {
  top: 11%;
  right: -8%;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle at 30% 30%, #ffc2e0, #ff73b7 70%);
  animation: blob 11s ease-in-out infinite alternate;
}

.shape-b {
  bottom: -18%;
  left: -10%;
  width: 430px;
  height: 430px;
  background: radial-gradient(circle at 40% 40%, #fff, #ffd4e9 65%);
  animation: blob 14s ease-in-out infinite alternate-reverse;
}

.shape-c {
  top: 25%;
  left: 45%;
  width: 170px;
  height: 170px;
  border: 26px solid rgba(255,255,255,.36);
  background: transparent;
  animation: spin-slow 18s linear infinite;
}

.floating-decor {
  position: fixed;
  z-index: -1;
  color: rgba(236, 56, 147, .2);
  font-size: 45px;
  pointer-events: none;
  animation: float-free 8s ease-in-out infinite;
}

.decor-1 { top: 14%; left: 3%; }
.decor-2 { top: 40%; right: 3%; animation-delay: -2s; }
.decor-3 { bottom: 15%; left: 5%; animation-delay: -4s; }
.decor-4 { bottom: 25%; right: 8%; animation-delay: -6s; }

.scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scroll-cue i {
  position: relative;
  display: block;
  width: 34px;
  height: 1px;
  overflow: hidden;
  background: rgba(119, 75, 105, .2);
}

.scroll-cue i::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--pink-500);
  transform: translateX(-100%);
  animation: scroll-line 2s ease-in-out infinite;
}

.marquee {
  overflow: hidden;
  color: white;
  background: var(--ink);
  transform: rotate(-1.2deg) scale(1.02);
  box-shadow: 0 20px 45px rgba(45,25,48,.16);
}

.marquee-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 28px;
  padding: 18px 0;
  animation: marquee 24s linear infinite;
}

.marquee-track span {
  font-family: "Baloo 2", sans-serif;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 1px;
}

.marquee-track b {
  color: var(--pink-300);
}

.section-heading {
  max-width: 730px;
  margin: 0 auto 54px;
  text-align: center;
}

.section-heading h2,
.contact-copy h2,
.social-copy h2,
.cta-card h2 {
  font-size: clamp(2.7rem, 5vw, 4.8rem);
}

.section-heading p,
.contact-copy p,
.social-copy p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.feature-card {
  position: relative;
  min-height: 310px;
  padding: 34px;
  overflow: hidden;
  border: 1px solid rgba(232, 70, 149, .11);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.72);
  box-shadow: 0 20px 55px rgba(151, 33, 96, .09);
  backdrop-filter: blur(16px);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.feature-card::before {
  content: "";
  position: absolute;
  right: -60px;
  bottom: -60px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--pink-100), transparent 70%);
  transition: transform .35s ease;
}

.feature-card:hover {
  border-color: rgba(232, 70, 149, .25);
  box-shadow: 0 28px 70px rgba(151, 33, 96, .15);
  transform: translateY(-10px) rotate(-.5deg);
}

.feature-card:hover::before {
  transform: scale(1.5);
}

.feature-icon {
  display: grid;
  width: 66px;
  height: 66px;
  place-items: center;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--pink-100), white);
  box-shadow: inset 0 0 0 1px rgba(239, 90, 164, .12), 0 12px 25px rgba(235, 75, 156, .14);
  font-size: 28px;
  transform: rotate(-4deg);
}

.feature-card h3 {
  margin: 30px 0 12px;
  font-family: "Baloo 2", sans-serif;
  font-size: 29px;
  line-height: 1;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.card-number {
  position: absolute;
  right: 25px;
  bottom: 15px;
  color: rgba(222, 49, 135, .09);
  font-family: "Baloo 2", sans-serif;
  font-size: 70px;
  font-weight: 800;
}

.contact-section {
  position: relative;
}

.contact-section::before {
  content: "";
  position: absolute;
  inset: 5% 0 auto;
  z-index: -1;
  height: 90%;
  background: linear-gradient(135deg, rgba(255, 216, 235, .7), rgba(255,255,255,.3));
  clip-path: polygon(0 8%, 100% 0, 100% 92%, 0 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  align-items: center;
  gap: 90px;
}

.contact-copy .eyebrow {
  margin-bottom: 20px;
}

.contact-copy p {
  max-width: 470px;
}

.sparkle-line {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 35px;
  color: var(--pink-500);
}

.sparkle-line i {
  width: 130px;
  height: 2px;
  background: linear-gradient(90deg, var(--pink-400), transparent);
}

.contact-list {
  display: grid;
  gap: 18px;
}

.contact-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 22px;
  border: 1px solid rgba(255,255,255,.8);
  border-radius: 25px;
  background: rgba(255,255,255,.76);
  box-shadow: 0 18px 45px rgba(125, 32, 81, .1);
  backdrop-filter: blur(14px);
  transition: transform .3s ease, box-shadow .3s ease, background .3s ease;
}

.contact-card:hover {
  background: white;
  box-shadow: 0 24px 58px rgba(125, 32, 81, .16);
  transform: translateX(10px);
}

.contact-symbol {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: white;
  border-radius: 19px;
  font-size: 14px;
  font-weight: 900;
}

.whatsapp-symbol {
  background: linear-gradient(135deg, #25d366, #0fa84d);
  box-shadow: 0 12px 25px rgba(37, 211, 102, .25);
}

.channel-symbol {
  background: linear-gradient(135deg, var(--pink-400), var(--pink-600));
  box-shadow: 0 12px 25px rgba(237, 67, 150, .25);
}

.contact-info {
  display: grid;
  gap: 4px;
}

.contact-info small {
  color: var(--muted);
  font-weight: 700;
}

.contact-info strong {
  font-size: 19px;
}

.arrow {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--pink-100);
  color: var(--pink-700);
  font-size: 20px;
  transition: transform .25s ease, background .25s ease;
}

.contact-card:hover .arrow {
  color: white;
  background: var(--pink-500);
  transform: rotate(45deg);
}

.social-panel {
  position: relative;
  display: grid;
  grid-template-columns: 1fr .85fr;
  align-items: center;
  gap: 55px;
  overflow: hidden;
  padding: 75px;
  border-radius: 48px;
  color: white;
  background:
    radial-gradient(circle at 90% 10%, rgba(255, 255, 255, .18), transparent 32%),
    linear-gradient(135deg, #2e1730 0%, #5c1d49 48%, #c32779 130%);
  box-shadow: 0 40px 90px rgba(78, 24, 64, .25);
}

.eyebrow.light {
  color: #ffd0e6;
}

.eyebrow.light span {
  background: rgba(255,255,255,.16);
}

.social-bubbles {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.social-copy,
.social-links {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.social-copy p {
  max-width: 560px;
  color: rgba(255,255,255,.72);
}

.social-links {
  display: grid;
  gap: 15px;
}

.social-link {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 15px;
  padding: 17px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 22px;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(14px);
  transition: background .25s ease, transform .25s ease;
}

.social-link:hover {
  background: rgba(255,255,255,.15);
  transform: translateY(-4px);
}

.tiktok-mark {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 16px;
  color: var(--ink);
  background: white;
  font-size: 25px;
  font-weight: 900;
}

.tiktok-mark.live {
  color: white;
  background: #ff286e;
  font-size: 10px;
  letter-spacing: .8px;
}

.social-link > div {
  display: grid;
}

.social-link small {
  color: rgba(255,255,255,.65);
}

.social-link strong {
  font-size: 17px;
}

.social-link b {
  font-size: 22px;
  transition: transform .25s ease;
}

.social-link:hover b {
  transform: rotate(45deg);
}

.social-bubbles .bubble {
  position: absolute;
  display: grid;
  place-items: center;
  color: white;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  background: rgba(255,255,255,.07);
  animation: bubble-float 7s ease-in-out infinite;
}

.b1 { top: 8%; right: 7%; width: 90px; height: 90px; font-size: 28px; }
.b2 { bottom: -25px; left: 44%; width: 120px; height: 120px; font-size: 35px; animation-delay: -2s !important; }
.b3 { top: 15%; left: -30px; width: 80px; height: 80px; font-size: 24px; animation-delay: -4s !important; }

.final-cta {
  padding-top: 10px;
}

.cta-card {
  position: relative;
  overflow: hidden;
  padding: 85px 30px;
  border: 1px solid rgba(240, 83, 161, .15);
  border-radius: 46px;
  background:
    radial-gradient(circle at 20% 10%, white, transparent 28%),
    linear-gradient(135deg, var(--pink-100), #fff 48%, #ffd3e9);
  box-shadow: 0 28px 75px rgba(176, 44, 111, .12);
  text-align: center;
}

.cta-card p {
  margin: 0 0 8px;
  color: var(--pink-700);
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.cta-card h2 {
  max-width: 760px;
  margin-inline: auto;
}

.btn-white {
  margin-top: 28px;
  color: white;
  background: var(--ink);
  box-shadow: 0 18px 38px rgba(45,25,48,.2);
}

.cta-stars span {
  position: absolute;
  color: rgba(235, 54, 145, .22);
  animation: float-free 6s ease-in-out infinite;
}

.cta-stars span:nth-child(1) { left: 8%; top: 20%; font-size: 46px; }
.cta-stars span:nth-child(2) { right: 10%; top: 22%; font-size: 54px; animation-delay: -2s; }
.cta-stars span:nth-child(3) { right: 24%; bottom: 12%; font-size: 32px; animation-delay: -4s; }

.site-footer {
  padding: 34px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
  padding-top: 28px;
  border-top: 1px solid rgba(148, 76, 116, .14);
}

.footer-brand .brand-icon {
  width: 38px;
  height: 38px;
  font-size: 21px;
}

.footer-brand strong {
  font-size: 18px;
}

.footer-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

.footer-links {
  display: flex;
  gap: 20px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 900;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 0;
  border-radius: 16px;
  color: white;
  background: linear-gradient(135deg, var(--pink-400), var(--pink-600));
  box-shadow: 0 14px 30px rgba(225, 47, 135, .28);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  transition: .3s ease;
}

.back-to-top.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .75s cubic-bezier(.2,.7,.2,1), transform .75s cubic-bezier(.2,.7,.2,1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: .12s; }
.reveal-delay-2 { transition-delay: .24s; }

@keyframes gradient-shift {
  to { background-position: 200% 0; }
}

@keyframes spin-slow {
  to { transform: rotate(360deg); }
}

@keyframes orbit-spin {
  to { transform: rotate(360deg); }
}

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

@keyframes float-free {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg); }
  50% { transform: translate3d(8px, -18px, 0) rotate(8deg); }
}

@keyframes bubble-float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-18px) scale(1.06); }
}

@keyframes blob {
  0% { border-radius: 48% 52% 58% 42% / 45% 42% 58% 55%; transform: rotate(0deg) scale(1); }
  100% { border-radius: 62% 38% 45% 55% / 53% 65% 35% 47%; transform: rotate(10deg) scale(1.08); }
}

@keyframes pulse {
  70% { box-shadow: 0 0 0 12px rgba(255,39,111,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,39,111,0); }
}

@keyframes image-shine {
  0%, 25% { left: -80%; }
  55%, 100% { left: 140%; }
}

@keyframes scroll-line {
  0% { transform: translateX(-100%); }
  50%, 100% { transform: translateX(100%); }
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

@media (max-width: 1024px) {
  .nav-links { gap: 20px; }
  .nav-cta { display: none; }
  .hero-grid { gap: 34px; }
  .hero h1 { font-size: clamp(3.4rem, 7vw, 5.5rem); }
  .hero-visual { min-height: 510px; }
  .image-card { width: min(430px, 82vw); }
  .orbit-one { width: 510px; height: 510px; }
  .orbit-two { width: 590px; height: 590px; }
  .contact-grid { gap: 50px; }
  .social-panel { padding: 60px 48px; }
}

@media (min-width: 821px) and (max-width: 960px) {
  .social-panel {
    grid-template-columns: minmax(0, 1.05fr) minmax(270px, .95fr);
    gap: 34px;
    padding: 52px 38px;
  }

  .social-copy h2 {
    font-size: clamp(2.65rem, 5.2vw, 3.4rem);
  }

  .social-copy p {
    font-size: 15px;
    line-height: 1.7;
  }
}

@media (max-width: 820px) {
  .section-pad { padding: 82px 0; }
  .navbar { min-height: 74px; }
  .menu-toggle { display: block; margin-left: auto; }
  .nav-links {
    position: fixed;
    inset: 74px 20px auto;
    display: grid;
    gap: 6px;
    padding: 18px;
    border: 1px solid rgba(240, 92, 165, .15);
    border-radius: 24px;
    background: rgba(255,250,253,.96);
    box-shadow: 0 22px 60px rgba(101, 26, 68, .18);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px) scale(.98);
    transition: .25s ease;
  }
  .nav-links.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }
  .nav-links a {
    padding: 14px 16px;
    border-radius: 14px;
  }
  .nav-links a:hover { background: var(--pink-100); }
  .nav-links a::after { display: none; }
  .menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle.active span:nth-child(2) { opacity: 0; }
  .menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .hero { min-height: auto; padding-top: 125px; }
  .hero-grid,
  .contact-grid,
  .social-panel {
    grid-template-columns: 1fr;
  }
  .hero-copy { text-align: center; }
  .hero-copy > p,
  .mini-trust { margin-inline: auto; }
  .hero-actions { justify-content: center; }
  .mini-trust { justify-content: center; }
  .hero-visual { min-height: 560px; margin-top: 20px; }
  .shape-a { top: 40%; right: -35%; }
  .shape-c { left: 3%; top: 46%; }
  .scroll-cue { display: none; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: 260px; }
  .contact-copy { text-align: center; }
  .contact-copy p { margin-inline: auto; }
  .sparkle-line { justify-content: center; }
  .social-panel { padding: 55px 32px; }
  .social-copy { text-align: center; }
  .social-copy p { margin-inline: auto; }
  .footer-grid { grid-template-columns: 1fr; justify-items: center; }
}

@media (max-width: 560px) {
  .container { width: min(100% - 26px, 1160px); }
  .section-pad { padding: 68px 0; }
  .hero { padding-top: 110px; }
  .hero h1 {
    width: 100%;
    max-width: 100%;
    font-size: clamp(2.65rem, 14vw, 3.55rem);
    line-height: .94;
    letter-spacing: -1px;
  }
  .mobile-title-break { display: block; }
  .hero-copy > p { font-size: 15.5px; }
  .hero-actions { display: grid; }
  .btn { width: 100%; }
  .mini-trust { align-items: flex-start; text-align: left; }
  .hero-visual { min-height: 430px; }
  .image-card { width: min(345px, 88vw); border-width: 8px; border-radius: 34px; }
  .image-card img { border-radius: 26px; }
  .orbit-one { width: 390px; height: 390px; }
  .orbit-two { width: 470px; height: 470px; }
  .floating-badge { padding: 10px 12px; border-radius: 15px; }
  .badge-chat { left: -2px; bottom: 32px; }
  .badge-live { right: -3px; top: 48px; }
  .floating-badge b { font-size: 11px; }
  .floating-badge small { font-size: 9px; }
  .section-heading h2,
  .contact-copy h2,
  .social-copy h2,
  .cta-card h2 { font-size: clamp(2.45rem, 13vw, 3.4rem); }
  .section-heading p,
  .contact-copy p,
  .social-copy p { font-size: 15px; }
  .feature-card { padding: 27px; border-radius: 28px; }
  .contact-card { gap: 13px; padding: 16px; }
  .contact-symbol { width: 49px; height: 49px; border-radius: 15px; }
  .contact-info strong { font-size: 15px; }
  .contact-info small { font-size: 11px; }
  .arrow { width: 36px; height: 36px; }
  .social-panel { padding: 48px 20px; border-radius: 32px; }
  .social-link { grid-template-columns: auto 1fr auto; padding: 13px; }
  .tiktok-mark { width: 46px; height: 46px; }
  .social-link strong { font-size: 14px; }
  .social-link small { font-size: 11px; }
  .cta-card { padding: 68px 20px; border-radius: 32px; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
}

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