@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700&family=Playfair+Display:wght@600&display=swap");

:root {
  --brand-primary: #fcb813;
  --brand-secondary: #1c7f75;
  --brand-dark: #1f2937;
  --bg-soft: #f5f5f5;
}

* {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", system-ui, -apple-system, sans-serif;
  background: var(--bg-soft);
  color: var(--brand-dark);
}

.gradient-hero {
  background: radial-gradient(circle at 20% 20%, rgba(252, 184, 19, 0.12), transparent 35%),
    radial-gradient(circle at 80% 0%, rgba(28, 127, 117, 0.16), transparent 30%),
    linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

.blur-card {
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.8);
}

#highlighter {
  display: inline-flex;
  min-width: 100%;
  animation: ticker 20s linear infinite;
}

@keyframes ticker {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.hero-mask {
  position: relative;
  overflow: hidden;
}

.hero-mask::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(252, 184, 19, 0.12), rgba(28, 127, 117, 0.16));
  pointer-events: none;
}

.floaty {
  animation: floaty 6s ease-in-out infinite;
}

@keyframes floaty {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
  100% {
    transform: translateY(0px);
  }
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: var(--brand-primary);
  color: var(--brand-dark);
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  z-index: 40;
}

.whatsapp-fab {
  position: fixed;
  bottom: 18px;
  left: 18px;
  background: #25d366;
  color: #fff;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-weight: 800;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.18);
  z-index: 40;
}
