:root {
  --pink: #ff2681;
  --pink-glow: rgba(255,38,129,0.35);
  --pink-soft: rgba(255,38,129,0.12);
  --black: #080808;
  --dark: #0f0f0f;
  --card: #141414;
  --card2: #1a1a1a;
  --white: #ffffff;
  --gray: #888;
  --light-gray: #aaa;
  --border: rgba(255,255,255,0.07);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  overflow-x: hidden;
  cursor: none;
  -webkit-tap-highlight-color: rgba(255, 38, 129, 0.15);
}

@media (hover: none), (pointer: coarse) {
  body { cursor: auto; }
  .cursor, .cursor-ring { display: none !important; }
  .btn-primary, .btn-ghost, .nav-cta, a { cursor: pointer; }
}

/* ── CUSTOM CURSOR ── */
.cursor {
  position: fixed; top: 0; left: 0;
  width: 12px; height: 12px;
  background: var(--pink);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s, width 0.3s, height 0.3s, background 0.3s;
  mix-blend-mode: screen;
}
.cursor-ring {
  position: fixed; top: 0; left: 0;
  width: 36px; height: 36px;
  border: 1.5px solid rgba(255,38,129,0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease, width 0.3s, height 0.3s, border-color 0.3s;
}
.cursor.hovered { width: 6px; height: 6px; }
.cursor-ring.hovered { width: 56px; height: 56px; border-color: var(--pink); }

/* ── CANVAS BACKGROUND ── */
#canvas-bg {
  position: fixed; top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* ── NOISE OVERLAY ── */
body::after {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
  opacity: 0.4;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--pink); border-radius: 2px; }

/* ── SELECTION ── */
::selection { background: var(--pink); color: var(--white); }

/* ── LAYOUT ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; position: relative; z-index: 2; }

section { position: relative; z-index: 2; }

/* ── HEADER / NAV ── */
header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.4rem 0;
  transition: all 0.4s ease;
}
header.scrolled {
  background: rgba(8,8,8,0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
}
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex; align-items: center; gap: 0.6rem;
  text-decoration: none;
}
.logo-mark {
  width: 36px; height: 36px;
  background: var(--pink);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  position: relative;
  animation: spin-logo 8s linear infinite;
}
@keyframes spin-logo {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.logo-text {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: -0.02em;
}
.logo-text span { color: var(--pink); }
.logo-sub {
  font-size: 0.6rem;
  color: var(--gray);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: block;
  margin-top: -4px;
}
.nav-links {
  display: flex; gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  color: var(--light-gray);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--pink);
  transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: var(--pink);
  color: var(--white) !important;
  padding: 0.6rem 1.4rem;
  border-radius: 2px;
  font-weight: 500 !important;
  letter-spacing: 0.04em;
  transition: all 0.3s ease !important;
  box-shadow: 0 0 20px var(--pink-glow);
}
.nav-cta:hover {
  background: var(--white) !important;
  color: var(--black) !important;
  box-shadow: 0 0 40px var(--pink-glow) !important;
  transform: translateY(-2px);
}
.nav-cta::after { display: none !important; }

/* Mobile menu */
.hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  cursor: none; background: none; border: none;
  padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white);
  transition: all 0.3s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu {
  display: none;
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(8,8,8,0.97);
  backdrop-filter: blur(20px);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  opacity: 0;
  transition: opacity 0.3s;
}
.mobile-menu.open { display: flex; opacity: 1; }
.mobile-menu a {
  color: var(--white);
  text-decoration: none;
  font-family: 'Syne', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--pink); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 8rem 0 5.5rem;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pink);
  font-weight: 500;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.3s forwards;
}
.eyebrow-dot {
  width: 6px; height: 6px;
  background: var(--pink);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}
.hero-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(3.5rem, 7vw, 6.5rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: 1.8rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.5s forwards;
}
.hero-title .line-accent { color: var(--pink); }
.hero-title .line-outline {
  -webkit-text-stroke: 1.5px var(--white);
  color: transparent;
}
.hero-desc {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--light-gray);
  max-width: 480px;
  margin-bottom: 2.5rem;
  font-weight: 300;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.7s forwards;
}
.hero-actions {
  display: flex; gap: 1rem; flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.9s forwards;
}
.btn-primary {
  background: var(--pink);
  color: var(--white);
  padding: 0.9rem 2.2rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-decoration: none;
  border: none;
  cursor: none;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 0 30px var(--pink-glow);
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 0 100%);
}
.btn-primary::before {
  content: '';
  position: absolute; top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}
.btn-primary:hover::before { left: 100%; }
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 40px var(--pink-glow);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  padding: 0.9rem 2.2rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-decoration: none;
  border: 1px solid var(--border);
  cursor: none;
  transition: all 0.3s ease;
  position: relative;
}
.btn-ghost:hover {
  border-color: var(--pink);
  color: var(--pink);
  transform: translateY(-3px);
}

/* Hero visual */
.hero-visual {
  position: relative;
  opacity: 0;
  animation: fadeIn 1.2s ease 0.6s forwards;
}
.phone-mockup {
  position: relative;
  --phone-height: clamp(480px, 48vh, 520px);
  width: calc(var(--phone-height) * (215 / 450));
  height: var(--phone-height);
  max-width: min(252px, 100%);
  margin: 0 auto;
  box-sizing: border-box;
  filter: drop-shadow(0 24px 48px rgba(0,0,0,0.55)) drop-shadow(0 0 40px rgba(255,38,129,0.1));
}
.phone-frame {
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  background: linear-gradient(165deg, #1a252d 0%, #0d161c 45%, #111b21 100%);
  border: 1px solid #2a3942;
  border-radius: 24px;
  padding: 4px;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.07),
    inset 0 -1px 0 rgba(0,0,0,0.35),
    0 32px 64px rgba(0,0,0,0.55),
    0 0 0 1px rgba(255,255,255,0.04);
  position: relative;
  z-index: 1;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.phone-frame::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--pink), transparent);
  opacity: 0.85;
  border-radius: 24px 24px 0 0;
  pointer-events: none;
}
/* Inner screen radius = body radius (24px) − uniform bezel (4px) → concentric */
.wa-dynamic-island {
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 62px;
  height: 8px;
  border-radius: 0 0 5px 5px;
  background: linear-gradient(180deg, #151f26 0%, #0b141a 100%);
  border: 1px solid #1f2c34;
  border-top: none;
  z-index: 4;
  box-sizing: border-box;
  box-shadow:
    inset 0 -1px 0 rgba(255,255,255,0.05),
    0 2px 5px rgba(0,0,0,0.4);
}
.wa-screen {
  position: relative;
  flex: 1;
  min-height: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  overflow: hidden;
  padding-top: 20px;
  box-sizing: border-box;
  background: #0b141a;
  border: 1px solid #2a3942;
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.05),
    inset 0 20px 50px -24px rgba(0,0,0,0.35);
}
.wa-screen-highlight {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  z-index: 0;
  background: linear-gradient(125deg, rgba(255,255,255,0.07) 0%, transparent 42%);
  opacity: 0.45;
}
.wa-home-bar {
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px 0 10px;
  background: #0b141a;
  border-top: 1px solid rgba(42, 57, 66, 0.65);
  position: relative;
  z-index: 3;
}
.wa-home-indicator {
  width: 128px;
  height: 5px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.32);
  box-shadow: 0 0 0 0.5px rgba(0,0,0,0.25);
}
.wa-chat-header {
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 0.75rem;
  background: #202c33;
  border-bottom: 1px solid #2a3942;
}
.wa-header-avatar-wrap {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  flex-shrink: 0;
  overflow: hidden;
  background: #2a3942;
  border: 1px solid #3b4a54;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wa-header-avatar-wrap.wa-header-avatar-letter {
  font-size: 0.85rem;
  font-weight: 700;
  color: #e9edef;
  background: linear-gradient(145deg, #00a884, #008f6f);
  border-color: #26d367;
}
.wa-header-avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.wa-header-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.wa-header-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: #e9edef;
  letter-spacing: 0.02em;
}
.wa-header-status {
  font-size: 0.65rem;
  color: #8696a0;
  letter-spacing: 0.04em;
}
.chat-row {
  display: flex;
  align-items: flex-end;
  gap: 0.35rem;
  max-width: 100%;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}
.chat-row.visible {
  opacity: 1;
  transform: translateY(0);
}
.chat-row--bot { justify-content: flex-start; }
.chat-row--user { justify-content: flex-end; }
.chat-avatar-slot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  flex-shrink: 0;
  align-self: flex-end;
  overflow: hidden;
  background: #2a3942;
  border: 1px solid #3b4a54;
  display: flex;
  align-items: center;
  justify-content: center;
}
.chat-avatar-slot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.chat-avatar-slot.is-letter {
  font-size: 0.65rem;
  font-weight: 700;
  color: #e9edef;
}
.chat-row--bot .chat-avatar-slot.is-letter {
  background: linear-gradient(145deg, #00a884, #008f6f);
  border-color: #26d367;
}
.chat-row--user .chat-avatar-slot.is-letter {
  background: #54656f;
  border-color: #667781;
}
.chat-bubble-wrap {
  max-width: calc(100% - 36px);
  display: flex;
  flex-direction: column;
}
.chat-row--user .chat-bubble-wrap {
  align-items: flex-end;
}
.chat-bubble {
  background: #202c33;
  border-radius: 8px 8px 8px 2px;
  padding: 0.45rem 0.55rem 0.5rem;
  margin-bottom: 0;
  font-size: 0.72rem;
  color: #e9edef;
  line-height: 1.45;
  border: none;
  box-shadow: 0 1px 0.5px rgba(11,20,26,0.13);
  max-width: 100%;
}
.chat-bubble.user {
  background: #005c4b;
  border-radius: 8px 8px 2px 8px;
  color: #e9edef;
  text-align: left;
  box-shadow: 0 1px 0.5px rgba(11,20,26,0.13);
}
.chat-bubble .sender {
  display: none;
}
#chat-container {
  flex: 1;
  min-height: 0;
  position: relative;
  z-index: 1;
  overflow-x: hidden;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.45rem;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
  padding: 0.5rem 0.4rem 0.45rem;
  background-color: #0b141a;
  background-image: url('images/background.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: local;
}
#chat-container::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}
#chat-container .chat-bubble { margin-bottom: 0; }
#chat-container .typing-indicator { margin-bottom: 0; }
.typing-indicator {
  display: flex; gap: 4px; align-items: center;
  padding: 0.55rem 0.75rem;
  background: #202c33;
  border-radius: 8px 8px 8px 2px;
  border: none;
  width: fit-content;
  opacity: 0;
  transition: opacity 0.3s;
  box-shadow: 0 1px 0.5px rgba(11,20,26,0.13);
}
.typing-indicator.visible { opacity: 1; }
.typing-indicator span {
  width: 5px; height: 5px;
  background: #8696a0;
  border-radius: 50%;
  animation: typing 1.2s ease-in-out infinite;
}
.typing-indicator span:nth-child(2) { animation-delay: 0.2s; }
.typing-indicator span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typing {
  0%, 100% { opacity: 0.3; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(-4px); }
}

/* Floating elements */
.float-badge {
  position: absolute;
  z-index: 3;
  background: var(--card2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.6rem 0.9rem;
  font-size: 0.72rem;
  white-space: nowrap;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  backdrop-filter: blur(10px);
}
.float-badge-1 {
  top: -20px; right: -40px;
  animation: float1 4s ease-in-out infinite;
}
.float-badge-2 {
  bottom: -20px; left: -50px;
  animation: float2 5s ease-in-out infinite;
}
.float-badge .badge-num {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  color: var(--pink);
  font-size: 1.1rem;
  display: block;
}
.float-badge .badge-label { color: var(--gray); font-size: 0.65rem; }
@keyframes float1 {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-12px) rotate(1deg); }
}
@keyframes float2 {
  0%, 100% { transform: translateY(0) rotate(2deg); }
  50% { transform: translateY(-8px) rotate(-1deg); }
}

/* ── STATS TICKER ── */
.ticker-wrap {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.2rem 0;
  overflow: hidden;
  position: relative;
  z-index: 2;
  background: linear-gradient(180deg, transparent, rgba(255, 35, 127, 0.03), transparent);
}
.ticker-track {
  display: flex; gap: 3rem;
  animation: ticker 25s linear infinite;
  width: max-content;
}
.ticker-item {
  display: flex; align-items: center; gap: 0.5rem;
  white-space: nowrap;
  font-size: 0.8rem;
  color: var(--white);
  letter-spacing: 0.08em;
}
.ticker-item .tick-sep { color: var(--pink); margin: 0 0.5rem; }
@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── SECTION HEADERS ── */
.section-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--pink);
  font-weight: 600;
  display: flex; align-items: center; gap: 0.8rem;
  margin-bottom: 1rem;
}
.section-eyebrow::before {
  content: '';
  width: 30px; height: 1px;
  background: var(--pink);
}
.section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1.2rem;
}
.section-title .accent { color: var(--pink); }
.section-desc {
  font-size: 1.05rem;
  color: var(--light-gray);
  line-height: 1.7;
  font-weight: 300;
  max-width: 560px;
}

/* ── PROBLEM SECTION ── */
.problem-section { padding: 8rem 0; }
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 4rem;
}
.problem-card {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateY(30px);
}
.problem-card.visible { opacity: 1; transform: translateY(0); }
.problem-card::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 4px; height: 0;
  background: var(--pink);
  transition: height 0.5s ease;
}
.problem-card:hover::before { height: 100%; }
.problem-card:hover {
  border-color: rgba(255,38,129,0.2);
  background: var(--card2);
  transform: translateY(-4px) !important;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.problem-num {
  font-family: 'Syne', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: rgba(255,38,129,0.12);
  line-height: 1;
  margin-bottom: 0.5rem;
  transition: color 0.4s;
}
.problem-card:hover .problem-num { color: rgba(255,38,129,0.25); }
.problem-text {
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.01em;
}

.stat-banner {
  background: var(--card);
  border: 1px solid rgba(255,38,129,0.2);
  padding: 1.8rem 2.5rem;
  display: flex; align-items: center; gap: 1.5rem;
  margin-top: 3rem;
  position: relative;
  overflow: hidden;
}
.stat-banner::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(90deg, rgba(255,38,129,0.05), transparent);
}
.stat-banner-num {
  font-family: 'Syne', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--pink);
  line-height: 1;
  flex-shrink: 0;
}
.stat-banner-text { font-size: 1rem; color: var(--light-gray); line-height: 1.5; }
.stat-banner-text strong { color: var(--white); font-weight: 500; }

/* ── SOLUTION SECTION ── */
.solution-section { padding: 8rem 0; background: var(--dark); }
.solution-header { max-width: 600px; margin-bottom: 5rem; }

.whatsapp-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(37,211,102,0.12);
  border: 1px solid rgba(37,211,102,0.3);
  color: #25D366;
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-top: 1.5rem;
  border-radius: 2px;
}
.whatsapp-badge svg { width: 16px; height: 16px; fill: #25D366; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5px;
  background: var(--border);
  border: 1px solid var(--border);
}
.feature-block {
  background: var(--dark);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateY(20px);
}
.feature-block.visible { opacity: 1; transform: translateY(0); }
.feature-block::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(255,38,129,0.06) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s;
}
.feature-block:hover::after { opacity: 1; }
.feature-block:hover { background: var(--card); }
.feature-icon {
  width: 52px; height: 52px;
  background: var(--pink-soft);
  border: 1px solid rgba(255,38,129,0.2);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--white);
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 0 100%);
}
.feature-icon svg {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}
.feature-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
  letter-spacing: -0.01em;
}
.feature-desc { font-size: 0.9rem; color: var(--light-gray); line-height: 1.65; font-weight: 300; }

/* ── PRICING SECTION ── */
.pricing-section { padding: 8rem 0; }
.pricing-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
  margin-top: 4rem;
}
.price-card {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 3rem clamp(1.75rem, 4vw, 3rem);
  position: relative;
  overflow: visible;
  min-width: 0;
}
.price-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--pink), rgba(255,38,129,0.3));
}
.price-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pink);
  font-weight: 600;
  margin-bottom: 1.2rem;
}
.price-amount {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.8rem, 4.8vw, 4.3rem);
  font-weight: 800;
  font-style: normal;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 0.3rem;
  padding-inline: 0.04em;
  font-variant-numeric: tabular-nums;
}
.price-period { font-size: 0.9rem; color: var(--gray); margin-bottom: 0.5rem; }
.price-convos {
  font-size: 0.85rem;
  color: var(--light-gray);
  padding: 0.5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin: 1.2rem 0;
}
.price-tag {
  display: inline-block;
  background: var(--pink);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  margin-top: 1rem;
}
.price-cta {
  display: block;
  background: var(--pink);
  color: var(--white);
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-decoration: none;
  margin-top: 2rem;
  transition: all 0.3s ease;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 0 100%);
  box-shadow: 0 0 30px var(--pink-glow);
}
.price-cta:hover {
  background: var(--white);
  color: var(--black);
  transform: translateY(-3px);
  box-shadow: 0 10px 40px var(--pink-glow);
}

.inclusions-list { list-style: none; display: flex; flex-direction: column; gap: 0; }
.inclusion-item {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--border);
  opacity: 0;
  transform: translateX(-20px);
  transition: all 0.4s ease;
}
.inclusion-item.visible { opacity: 1; transform: translateX(0); }
.inclusion-item:last-child { border-bottom: none; }
.inc-icon {
  width: 32px; height: 32px;
  background: var(--pink-glow);
  border: 1px solid rgba(255, 5, 109, 0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 1px;
}
.inc-text { font-size: 0.95rem; line-height: 1.5; color: var(--light-gray); }
.inc-text strong { color: var(--white); font-weight: 500; }

/* ── RESULTS SECTION ── */
.results-section {
  padding: 8rem 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.results-section::before {
  content: '';
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,38,129,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 4rem;
}
.result-card {
  background: var(--dark);
  padding: 3rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateY(30px);
}
.result-card.visible { opacity: 1; transform: translateY(0); }
.result-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--pink), transparent);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}
.result-card:hover::before { transform: scaleX(1); }
.result-card:hover { background: var(--card); }
.result-num {
  font-family: 'Syne', sans-serif;
  font-size: clamp(3rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--pink);
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: -0.03em;
}
.result-label {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}
.result-sub { font-size: 0.78rem; color: var(--gray); line-height: 1.5; }

/* ── HOW IT WORKS ── */
.how-section { padding: 8rem 0; }
.flow-track {
  display: flex;
  gap: 0;
  margin-top: 4rem;
  position: relative;
}
.flow-track::before {
  content: '';
  position: absolute;
  top: 40px; left: 60px; right: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--pink), var(--pink), transparent);
  z-index: 0;
}
.flow-step {
  flex: 1;
  text-align: center;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
}
.flow-step.visible { opacity: 1; transform: translateY(0); }
.flow-num {
  width: 80px; height: 80px;
  background: var(--card);
  border: 2px solid var(--pink);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--pink);
  box-shadow: 0 0 20px var(--pink-glow);
  position: relative;
  transition: all 0.3s ease;
}
.flow-step:hover .flow-num {
  background: var(--pink);
  color: var(--white);
  transform: scale(1.1);
  box-shadow: 0 0 40px var(--pink-glow);
}
.flow-title {
  font-family: 'Syne', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}
.flow-text { font-size: 0.82rem; color: var(--gray); line-height: 1.6; }

/* ── CTA SECTION ── */
.cta-section {
  padding: 8rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(255,38,129,0.08) 0%, transparent 70%);
}
.cta-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1.2rem;
}
.cta-title .outline {
  -webkit-text-stroke: 1.5px var(--white);
  color: transparent;
}
.cta-desc {
  font-size: 1.05rem;
  color: var(--light-gray);
  max-width: 480px;
  margin: 0 auto 3rem;
  line-height: 1.7;
  font-weight: 300;
}
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ── */
footer {
  background: var(--dark);
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
  position: relative; z-index: 2;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2rem;
}
.footer-brand p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.7;
  margin-top: 1rem;
  max-width: 280px;
  font-weight: 300;
}
.footer-col h4 {
  font-family: 'Syne', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 1.2rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col a {
  color: var(--gray);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.3s;
}
.footer-col a:hover { color: var(--pink); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { font-size: 0.8rem; color: var(--gray); }
.footer-bottom span { color: var(--pink); }
.built-on {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.78rem;
  color: var(--gray);
}
.built-on .tech {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 0.2rem 0.5rem;
  font-size: 0.7rem;
  color: var(--light-gray);
  letter-spacing: 0.05em;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.25rem;
    justify-items: center;
  }
  .hero-content {
    text-align: center;
    max-width: 36rem;
  }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-visual {
    display: block;
    width: 100%;
    max-width: min(280px, 92vw);
  }
  .phone-mockup {
    --phone-height: min(520px, max(480px, 118vw));
    width: calc(var(--phone-height) * (215 / 450));
    max-width: min(252px, 88vw);
  }
  .float-badge-1 { top: -12px; right: -6px; }
  .float-badge-2 { bottom: -14px; left: -6px; }
  .float-badge {
    font-size: 0.68rem;
    padding: 0.5rem 0.75rem;
  }
  .float-badge .badge-num { font-size: 1rem; }
  .hero { padding: 7rem 0 4rem; min-height: auto; }
  .problem-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .pricing-layout { grid-template-columns: 1fr; }
  .results-grid { grid-template-columns: repeat(2, 1fr); }
  .flow-track { flex-direction: column; gap: 2rem; }
  .flow-track::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }
  .hero-title { font-size: clamp(3rem, 11vw, 4rem); }
}
@media (max-width: 480px) {
  .results-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn-primary,
  .hero-actions .btn-ghost {
    width: 100%;
    max-width: 20rem;
    text-align: center;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .cta-actions { flex-direction: column; align-items: center; }
  .stat-banner { flex-direction: column; gap: 0.5rem; }
  .container { padding: 0 1.2rem; }
  .phone-mockup { --phone-height: min(520px, max(480px, 128vw)); }
}
.stat-highlight {
  background: color-mix(in srgb, var(--pink) 75%, transparent);
  color: var(--white);
}
