/* ============================================================
   Cardibeys.co PBG — style.css  (v2 — clean & fixed)
   ============================================================ */

/* ===== VARIABLES ===== */
:root {
  --pink-50: #fff5f8;
  --pink-100: #fde8f0;
  --pink-200: #fbc8db;
  --pink-300: #f899bb;
  --pink-400: #f4699a;
  --pink-500: #e8407a;
  --pink-600: #c42d62;
  --pink-700: #9b1f4a;

  --grad-main: linear-gradient(135deg, #e8407a 0%, #f4699a 60%, #f899bb 100%);
  --grad-soft: linear-gradient(135deg, #fde8f0 0%, #fff5f8 100%);
  --grad-hero: linear-gradient(150deg, #ffe4ef 0%, #ffc8de 40%, #ffaace 100%);
  --grad-wa: linear-gradient(135deg, #e8407a 0%, #f4699a 100%);

  --shadow-sm: 0 2px 10px rgba(232, 64, 122, 0.1);
  --shadow-md: 0 6px 24px rgba(232, 64, 122, 0.15);
  --shadow-lg: 0 14px 48px rgba(232, 64, 122, 0.2);

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-xl: 40px;
  --radius-full: 9999px;

  /* Clean readable fonts */
  --font-body: "Nunito", sans-serif;
  --font-display: "Playfair Display", serif;
  --font-script: "Dancing Script", cursive;

  --ease: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: var(--font-body);
  background: #fff;
  color: #2d0d1c;
  line-height: 1.65;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}
.text-center {
  text-align: center;
}

/* ===== TYPOGRAPHY HELPERS ===== */
.pink-text {
  background: var(--grad-main);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ===== SECTION TYPOGRAPHY ===== */
.eyebrow {
  display: inline-block;
  background: var(--pink-100);
  color: var(--pink-600);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: var(--radius-full);
  margin-bottom: 14px;
  border: 1px solid var(--pink-200);
}

.sec-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: #2d0d1c;
  margin-bottom: 16px;
  line-height: 1.22;
}

.sec-desc {
  max-width: 600px;
  margin: 0 auto 36px;
  color: #6b3050;
  font-size: 1rem;
  line-height: 1.75;
  font-weight: 500;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 800;
  cursor: pointer;
  transition: var(--ease);
  border: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--grad-main);
  color: #fff;
  box-shadow: 0 5px 20px rgba(232, 64, 122, 0.32);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(232, 64, 122, 0.42);
}
.btn-primary:active {
  transform: translateY(0);
}

.btn-outline {
  background: transparent;
  color: var(--pink-500);
  border: 2px solid var(--pink-400);
}
.btn-outline:hover {
  background: var(--pink-100);
  transform: translateY(-2px);
}

.btn-white {
  background: #fff;
  color: var(--pink-600);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.09);
}
.btn-white:hover {
  background: var(--pink-50);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.82rem;
}

/* NAV WA BUTTON */
.btn-wa-nav {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--grad-main);
  color: #fff;
  padding: 10px 22px;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.86rem;
  font-weight: 800;
  box-shadow: 0 4px 16px rgba(232, 64, 122, 0.28);
  transition: var(--ease);
  white-space: nowrap;
}
.btn-wa-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 7px 22px rgba(232, 64, 122, 0.38);
}

/* ===== ANNOUNCEMENT BAR ===== */
.announcement-bar {
  background: var(--grad-main);
  color: #fff;
  padding: 8px 0;
  overflow: hidden;
}
.announcement-track {
  display: inline-block;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.4px;
}
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ===== NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--pink-100);
  transition: box-shadow var(--ease);
}
.navbar.scrolled {
  box-shadow: 0 3px 20px rgba(232, 64, 122, 0.1);
}

.nav-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 66px;
  gap: 12px;
}

.nav-logo img {
  height: 46px;
  width: auto;
  object-fit: contain;
  border-radius: 10px;
}
.logo-fallback {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-text {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  background: var(--grad-main);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.logo-sub {
  font-size: 0.68rem;
  font-weight: 800;
  color: var(--pink-400);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  padding: 8px 14px;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 700;
  color: #3a1525;
  transition: var(--ease);
}
.nav-link:hover,
.nav-link.active {
  color: var(--pink-500);
  background: var(--pink-50);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  height: 2px;
  width: 22px;
  background: var(--pink-500);
  border-radius: 99px;
  transition: var(--ease);
}
.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  background: var(--grad-hero);
  overflow: hidden;
  /* NO mouse-tracking transform — prevents shift on hover */
}

/* Static decorative circles — CSS only, no JS transform */
.hero-bg-circle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(60px);
  opacity: 0.28;
}
.c1 {
  width: 480px;
  height: 480px;
  background: #f4699a;
  top: -160px;
  left: -120px;
  animation: breathe 10s ease-in-out infinite;
}
.c2 {
  width: 360px;
  height: 360px;
  background: #e8407a;
  bottom: -80px;
  right: -60px;
  animation: breathe 13s ease-in-out infinite 2s;
}
.c3 {
  width: 280px;
  height: 280px;
  background: #fbc8db;
  top: 40%;
  left: 35%;
  animation: breathe 11s ease-in-out infinite 1s;
}

@keyframes breathe {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.12);
  }
}

.hero-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 72px 24px 96px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
  position: relative;
  z-index: 2;
}

/* Hero text */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.9);
  color: var(--pink-600);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 800;
  margin-bottom: 20px;
}
.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--pink-500);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(232, 64, 122, 0.5);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(232, 64, 122, 0);
  }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  color: #2d0d1c;
  line-height: 1.18;
  margin-bottom: 6px;
}
.hero-title em {
  font-style: normal;
  background: var(--grad-main);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-script {
  font-family: var(--font-script);
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  color: var(--pink-500);
  margin-bottom: 18px;
  line-height: 1.3;
}

.hero-desc {
  font-size: 0.98rem;
  color: #5c2638;
  margin-bottom: 28px;
  max-width: 460px;
  line-height: 1.72;
  font-weight: 500;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 60px;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  background: var(--grad-main);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}
.stat-plus {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  background: var(--grad-main);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  vertical-align: super;
}
.stat-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: #6b3050;
  margin-top: 3px;
  letter-spacing: 0.2px;
}
.stat-div {
  width: 1px;
  height: 38px;
  background: rgba(232, 64, 122, 0.25);
  border-radius: 99px;
}

/* Hero visual (no parallax/transform on hover) */
.hero-visual {
  position: relative;
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hv-main {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 210px;
  height: 210px;
  background: rgba(255, 255, 255, 0.88);
  border-radius: 50% 40% 55% 45% / 45% 55% 40% 60%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: var(--shadow-lg);
  animation: morphBlob 10s ease-in-out infinite;
  z-index: 3;
  padding: 24px;
}
@keyframes morphBlob {
  0%,
  100% {
    border-radius: 50% 40% 55% 45% / 45% 55% 40% 60%;
  }
  33% {
    border-radius: 40% 55% 45% 50% / 55% 45% 55% 40%;
  }
  66% {
    border-radius: 55% 45% 40% 55% / 40% 60% 50% 50%;
  }
}
.hv-emoji {
  font-size: 2.8rem;
  margin-bottom: 8px;
  animation: float 3s ease-in-out infinite;
}
.hv-title {
  font-family: var(--font-script);
  font-size: 1.15rem;
  color: var(--pink-600);
  font-weight: 700;
}
.hv-sub {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--pink-400);
  margin-top: 3px;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.hv-chip {
  position: absolute;
  background: rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  font-size: 0.82rem;
  font-weight: 800;
  color: #3a1525;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  z-index: 4;
}
.hv-chip span {
  font-size: 1.3rem;
}

/* Fixed positions — no JS transform */
.chip-a {
  top: 12%;
  left: 0%;
  animation: chipFloat 5s ease-in-out infinite;
}
.chip-b {
  top: 12%;
  right: 0%;
  animation: chipFloat 6s ease-in-out infinite 1s;
}
.chip-c {
  bottom: 18%;
  left: 8%;
  animation: chipFloat 5.5s ease-in-out infinite 0.5s;
}

@keyframes chipFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  line-height: 0;
}
.hero-wave svg {
  width: 100%;
  height: 64px;
}

/* ===== CATEGORIES ===== */
.categories {
  padding: 52px 24px;
}

.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1160px;
  margin: 0 auto;
}

.cat-card {
  background: var(--grad-main);
  border-radius: var(--radius-lg);
  padding: 36px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition:
    transform var(--ease),
    box-shadow var(--ease);
  box-shadow: var(--shadow-md);
  aspect-ratio: 1 / 1.05;
  overflow: hidden;
  position: relative;
}
.cat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.cat-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.08);
  opacity: 0;
  transition: opacity var(--ease);
}
.cat-card:hover::after {
  opacity: 1;
}

.cat-icon {
  font-size: 2.6rem;
}
.cat-label {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  line-height: 1.25;
}

/* ===== WELCOME ===== */
.welcome-section {
  padding: 80px 24px;
  background: var(--pink-50);
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.pill {
  background: #fff;
  border: 1.5px solid var(--pink-200);
  color: var(--pink-600);
  padding: 7px 18px;
  border-radius: var(--radius-full);
  font-size: 0.84rem;
  font-weight: 700;
  transition: var(--ease);
  box-shadow: var(--shadow-sm);
}
.pill:hover {
  background: var(--grad-main);
  color: #fff;
  border-color: transparent;
  transform: translateY(-2px);
}

/* ===== WHY US ===== */
.why-section {
  padding: 80px 24px;
  background: #fff;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
  text-align: left;
}

.why-card {
  background: var(--pink-50);
  border: 1px solid var(--pink-100);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition:
    transform var(--ease),
    box-shadow var(--ease),
    border-color var(--ease);
  opacity: 0;
  transform: translateY(24px);
}
.why-card.visible {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease,
    box-shadow var(--ease),
    border-color var(--ease);
}
.why-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--pink-300);
}

.why-icon {
  font-size: 1.9rem;
  width: 56px;
  height: 56px;
  background: #fff;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--pink-200);
}
.why-card h3 {
  font-size: 1rem;
  font-weight: 800;
  color: #2d0d1c;
  margin-bottom: 8px;
}
.why-card p {
  font-size: 0.88rem;
  color: #6b3050;
  line-height: 1.68;
  font-weight: 500;
}

/* ===== WA GROUPS ===== */
.wa-section {
  background: var(--grad-wa);
  padding: 80px 24px;
  position: relative;
  overflow: hidden;
}

.wa-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 860px;
  margin: 0 auto;
  margin-top: 44px;
}

.wa-card {
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  color: #fff;
  text-decoration: none;
  transition: var(--ease);
}
.wa-card:hover {
  background: rgba(255, 255, 255, 0.26);
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}

.wa-icon-box {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.25);
}
.wa-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 7px;
}
.wa-card-body p {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  margin-bottom: 14px;
  font-weight: 500;
}
.wa-btn {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  padding: 7px 18px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 800;
  transition: var(--ease);
}
.wa-card:hover .wa-btn {
  background: rgba(255, 255, 255, 0.32);
}

/* ===== SOCIAL ===== */
.social-section {
  padding: 80px 24px;
  background: #fff;
}

.ig-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 860px;
  margin: 44px auto 0;
}

.ig-card {
  border: 1px solid var(--pink-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  display: block;
  transition: var(--ease);
  box-shadow: var(--shadow-sm);
}
.ig-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--pink-300);
}

.ig-top {
  height: 110px;
  background: linear-gradient(
    135deg,
    #f09433,
    #e6683c,
    #dc2743,
    #cc2366,
    #bc1888
  );
  display: flex;
  align-items: center;
  justify-content: center;
}
.ig-top-2 {
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
}
.ig-svg {
  width: 48px;
  height: 48px;
}

.ig-body {
  padding: 20px 24px;
  background: var(--pink-50);
}
.ig-handle {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--pink-600);
  margin-bottom: 7px;
}
.ig-desc {
  font-size: 0.86rem;
  color: #6b3050;
  line-height: 1.65;
  margin-bottom: 14px;
  font-weight: 500;
}
.ig-cta {
  display: inline-block;
  background: var(--grad-main);
  color: #fff;
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 800;
  box-shadow: 0 3px 14px rgba(232, 64, 122, 0.25);
}

/* Ticker */
.ticker-wrap {
  overflow: hidden;
  background: var(--pink-100);
  border-radius: var(--radius-full);
  padding: 11px 0;
  margin-top: 44px;
  border: 1px solid var(--pink-200);
}
.ticker-track {
  display: inline-flex;
  gap: 40px;
  white-space: nowrap;
  animation: ticker 20s linear infinite;
  font-weight: 700;
  color: var(--pink-600);
  font-size: 0.84rem;
  padding: 0 20px;
}
@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ===== CONTACT ===== */
.contact-section {
  padding: 80px 24px;
  background: var(--pink-50);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 36px;
  margin-top: 48px;
  text-align: left;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-block {
  background: #fff;
  border: 1px solid var(--pink-100);
  border-radius: var(--radius-md);
  padding: 20px 22px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: var(--ease);
  box-shadow: var(--shadow-sm);
}
.contact-block:hover {
  border-color: var(--pink-300);
  box-shadow: var(--shadow-md);
  transform: translateX(3px);
}
.c-icon {
  font-size: 1.6rem;
  width: 44px;
  height: 44px;
  background: var(--pink-100);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-block h4 {
  font-size: 0.84rem;
  font-weight: 900;
  color: var(--pink-600);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.contact-block p {
  font-size: 0.86rem;
  color: #6b3050;
  line-height: 1.6;
  margin-bottom: 10px;
  font-weight: 500;
}
.link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--pink-200);
  box-shadow: var(--shadow-md);
}
.map-header {
  background: var(--grad-main);
  padding: 13px 20px;
  color: #fff;
  font-weight: 800;
  font-size: 0.88rem;
}
.map-container iframe {
  width: 100%;
  height: 380px;
  display: block;
  border: none;
}

/* ===== SUBSCRIBE ===== */
.subscribe-section {
  background: var(--grad-main);
  padding: 88px 24px;
  text-align: center;
}
.subscribe-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}
.subscribe-script {
  font-family: var(--font-script);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 16px;
}
.subscribe-desc {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.96rem;
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.72;
  font-weight: 500;
}
.subscribe-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

/* ===== FOOTER ===== */
.footer {
  background: #1c0a11;
}
.footer-wave {
  line-height: 0;
}
.footer-wave svg {
  width: 100%;
  display: block;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 36px;
  padding: 52px 24px 44px;
  max-width: 1160px;
  margin: 0 auto;
}

.footer-brand img {
  height: 50px;
  width: auto;
  border-radius: 10px;
  margin-bottom: 14px;
  object-fit: contain;
}
.footer-tagline {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.65;
  margin-bottom: 20px;
}
.footer-socials {
  display: flex;
  gap: 8px;
}
.soc-btn {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.65);
  transition: var(--ease);
}
.soc-btn:hover {
  background: var(--grad-main);
  border-color: transparent;
  color: #fff;
  transform: translateY(-2px);
}

.footer-col h5 {
  color: #fff;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--pink-700);
}
.footer-col ul li {
  margin-bottom: 9px;
}
.footer-col ul li a {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.86rem;
  transition: color var(--ease);
}
.footer-col ul li a:hover {
  color: var(--pink-300);
}
.footer-addr {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
  padding: 18px 24px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.38);
}

/* ===== FLOATING WA ===== */
.floating-wa {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: var(--grad-main);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 24px rgba(232, 64, 122, 0.42);
  z-index: 9999;
  transition: var(--ease);
  text-decoration: none;
}
.floating-wa:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 10px 36px rgba(232, 64, 122, 0.52);
}
.floating-wa::before {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  background: rgba(232, 64, 122, 0.25);
  animation: wa-ring 2.5s ease-out infinite;
}
@keyframes wa-ring {
  0% {
    transform: scale(1);
    opacity: 0.35;
  }
  100% {
    transform: scale(1.9);
    opacity: 0;
  }
}

.wa-tip {
  position: absolute;
  right: 64px;
  background: #fff;
  color: var(--pink-600);
  font-size: 0.76rem;
  font-weight: 800;
  padding: 6px 12px;
  border-radius: var(--radius-full);
  white-space: nowrap;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity var(--ease),
    transform var(--ease);
  transform: translateX(8px);
}
.floating-wa:hover .wa-tip {
  opacity: 1;
  transform: translateX(0);
}

/* ===== REVEAL UTIL ===== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Tablet — ≤ 1024px */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 36px;
  }
  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero-desc {
    max-width: 100%;
  }
  .hero-btns {
    justify-content: center;
  }
  .hero-stats {
    justify-content: center;
  }
  .hero-visual {
    height: 360px;
    width: 100%;
    max-width: 440px;
    margin: 0 auto;
  }

  .cat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

/* Mobile — ≤ 768px */
@media (max-width: 768px) {
  /* Navbar mobile */
  .btn-wa-nav {
    display: none;
  }
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    width: min(280px, 80vw);
    height: 100dvh;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 28px 36px;
    gap: 4px;
    box-shadow: -6px 0 32px rgba(0, 0, 0, 0.1);
    transform: translateX(100%);
    transition: transform var(--ease);
    z-index: 998;
  }
  .nav-links.open {
    transform: translateX(0);
  }
  .nav-link {
    font-size: 1rem;
    width: 100%;
    padding: 11px 14px;
    border-radius: var(--radius-md);
  }

  /* Hero mobile */
  .hero-container {
    padding: 52px 20px 80px;
    gap: 28px;
  }
  .hero-visual {
    height: 280px;
    max-width: 320px;
  }
  .hv-main {
    width: 160px;
    height: 160px;
    padding: 20px;
  }
  .hv-emoji {
    font-size: 2.2rem;
  }
  .hv-title {
    font-size: 1rem;
  }
  .hv-chip {
    font-size: 0.78rem;
    padding: 10px 14px;
  }
  .chip-a {
    top: 8%;
    left: -4%;
  }
  .chip-b {
    top: 8%;
    right: -4%;
  }
  .chip-c {
    bottom: 10%;
    left: 2%;
  }

  /* Stats vertical */
  .hero-stats {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 14px 20px;
    justify-content: center;
  }
  .stat-div {
    display: none;
  }

  /* Sections */
  .why-grid {
    grid-template-columns: 1fr;
  }
  .wa-grid {
    grid-template-columns: 1fr;
  }
  .ig-grid {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .wa-card {
    flex-direction: column;
  }

  /* Footer */
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 36px 20px 32px;
  }
  .footer-brand,
  .footer-col {
    text-align: center;
  }
  .footer-socials {
    justify-content: center;
  }
  .link-row {
    justify-content: center;
  }
}

/* Small mobile — ≤ 480px */
@media (max-width: 480px) {
  .hero-title {
    font-size: 1.95rem;
  }
  .hero-btns {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-btns .btn {
    justify-content: center;
  }
  .subscribe-btns {
    flex-direction: column;
    align-items: center;
  }
  .subscribe-btns .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
  .cat-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .cat-card {
    padding: 24px 12px;
    aspect-ratio: auto;
    min-height: 120px;
  }
  .cat-label {
    font-size: 1rem;
  }
  .map-container iframe {
    height: 300px;
  }
}

/* Very small — ≤ 360px */
@media (max-width: 360px) {
  .hero-title {
    font-size: 1.7rem;
  }
  .hero-script {
    font-size: 1.2rem;
  }
  .sec-title {
    font-size: 1.5rem;
  }
}
