/* ===== HERO SECTION ===== */
#hero {
  padding: 140px 0 90px;
  position: relative;
  overflow: hidden;
  background: var(--color-bg);
}

/* Blobs */
.hero-blob {
  position: absolute;
  width: 750px;
  height: 750px;
  background: radial-gradient(circle, rgba(192,38,211,0.08) 0%, rgba(249,115,22,0.04) 50%, transparent 70%);
  border-radius: 50%;
  top: -250px;
  right: -200px;
  pointer-events: none;
  will-change: transform;
}

.hero-blob-2 {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(236,72,153,0.07) 0%, transparent 70%);
  border-radius: 50%;
  bottom: -150px;
  left: -150px;
  pointer-events: none;
}

/* Grid layout */
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Content Left */
.hero-content {
  animation: fadeInUp 0.7s ease forwards;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(192,38,211,0.06);
  border: 1px solid rgba(192,38,211,0.18);
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-body);
  margin-bottom: 24px;
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(34,197,94,0.2);
  animation: pulse-dot 2s infinite;
  flex-shrink: 0;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 22px;
  color: var(--color-text);
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--color-body);
  margin-bottom: 36px;
  max-width: 480px;
  line-height: 1.75;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-feature-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-feature-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-body);
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

.hero-feature-badge:hover {
  border-color: rgba(192,38,211,0.3);
  box-shadow: var(--shadow-hover);
}

/* ===== CHAT MOCKUP ===== */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  animation: scaleIn 0.7s ease 0.2s both;
}

.chat-mockup {
  width: 320px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow:
    0 32px 80px rgba(0,0,0,0.14),
    0 8px 24px rgba(0,0,0,0.08),
    0 0 0 1px rgba(0,0,0,0.04);
  background: #ECE5DD;
  position: relative;
}

.chat-header {
  background: var(--gradient-brand);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.chat-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  border: 2px solid rgba(255,255,255,0.3);
}

.chat-header-info h4 {
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.2;
}

.chat-online {
  color: rgba(255,255,255,0.85);
  font-size: 0.73rem;
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 2px;
}

.chat-online::before {
  content: '';
  width: 6px;
  height: 6px;
  background: #4ade80;
  border-radius: 50%;
  display: inline-block;
  animation: pulse-dot 2s infinite;
}

.chat-body {
  padding: 18px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #ECE5DD;
  min-height: 300px;
}

.msg {
  max-width: 86%;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 0.82rem;
  line-height: 1.55;
}

.msg-user {
  background: #fff;
  color: #333;
  align-self: flex-start;
  border-bottom-left-radius: 4px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.08);
}

.msg-bot {
  background: #DCF8C6;
  color: #333;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.08);
}

.msg-time {
  font-size: 0.64rem;
  color: rgba(0,0,0,0.38);
  margin-top: 2px;
  text-align: right;
  padding-right: 2px;
}

.msg-time.left {
  text-align: left;
  padding-left: 2px;
}

.msg-payment {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 14px;
  padding: 14px;
  align-self: flex-end;
  max-width: 92%;
  font-size: 0.8rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.msg-payment .pay-title {
  font-weight: 700;
  font-size: 0.82rem;
  margin-bottom: 4px;
  color: #222;
}

.msg-payment .pay-detail {
  color: #888;
  font-size: 0.75rem;
  margin-bottom: 10px;
}

.msg-payment .pay-link {
  display: block;
  padding: 9px 14px;
  background: var(--gradient-brand);
  color: #fff;
  border-radius: 10px;
  text-align: center;
  font-weight: 700;
  font-size: 0.78rem;
  transition: var(--transition);
}

.msg-payment .pay-link:hover {
  opacity: 0.9;
}

/* Floating notification */
.chat-notification {
  position: absolute;
  top: -18px;
  right: -18px;
  background: #fff;
  border: 2px solid #22c55e;
  border-radius: var(--radius-pill);
  padding: 9px 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #16a34a;
  box-shadow: 0 6px 24px rgba(0,0,0,0.14);
  white-space: nowrap;
  animation: float 3.5s ease-in-out infinite;
  z-index: 2;
}

.chat-notification .notif-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
}
