/* hero styles */

/* ─── Hero ─── */
section.hero {
  position: relative;
  padding: 132px 0 100px;
  background: var(--grad-hero);
  overflow: hidden;
}
.hero-blob {
  position: absolute; pointer-events: none;
  filter: blur(72px);
  border-radius: 50%;
  opacity: 0.55;
  animation: blobMove 14s ease-in-out infinite;
}
.hero-blob.b1 { width: 520px; height: 520px; top: -160px; right: -120px; background: radial-gradient(circle, var(--mint), transparent 65%); }
.hero-blob.b2 { width: 460px; height: 460px; bottom: -180px; left: -120px; background: radial-gradient(circle, var(--indigo), transparent 65%); animation-delay: -4s; }
.hero-blob.b3 { width: 380px; height: 380px; top: 40%; left: 45%; background: radial-gradient(circle, var(--cyan), transparent 70%); opacity: 0.30; animation-delay: -8s; }
.hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(11,15,31,0.04) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(11,15,31,0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
}
.hero-left { animation: fadeUp 0.8s var(--ease) both; }
h1.hero-title {
  font-size: clamp(40px, 5.5vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.045em;
  margin: 22px 0 24px;
  text-wrap: balance;
}
h1.hero-title em {
  font-style: normal;
  background: var(--grad-accent);
  background-size: 200% 200%;
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  animation: gradShift 8s ease-in-out infinite;
}
.hero-sub {
  font-size: 18px;
  color: var(--text-mute);
  max-width: 540px;
  line-height: 1.55;
  margin-bottom: 32px;
  text-wrap: pretty;
}
.hero-sub strong { color: var(--ink); font-weight: 700; }
.hero-cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 36px; }
.hero-trust {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 18px;
  background: rgba(255,255,255,0.7);
  border: 1px solid var(--border);
  border-radius: 100px;
  backdrop-filter: blur(8px);
  max-width: 480px;
}
.hero-trust-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--grad-mint);
  color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 13px;
  flex-shrink: 0;
  border: 2px solid #fff;
  box-shadow: 0 4px 12px -2px var(--mint-glow);
}
.hero-trust-text { font-size: 13.5px; color: var(--text-mute); line-height: 1.4; }
.hero-trust-text strong { color: var(--ink); font-weight: 700; }

.hero-right { position: relative; animation: fadeUp 0.8s 0.15s var(--ease) both; }
.hero-dashboard {
  position: relative;
  background: var(--grad-ink);
  border-radius: var(--radius-xl);
  padding: 26px;
  color: #fff;
  box-shadow: 0 40px 80px -20px rgba(11,15,31,0.35),
              0 0 0 1px rgba(255,255,255,0.06) inset;
  overflow: hidden;
}
.hero-dashboard::before {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, var(--mint), transparent 65%);
  opacity: 0.18; border-radius: 50%; pointer-events: none;
}
.dash-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.dash-title { font-family: var(--font-body); font-weight: 700; font-size: 14.5px; display: flex; align-items: center; gap: 8px; }
.dash-title .paw {
  width: 24px; height: 24px;
  background: rgba(0,214,143,0.18);
  border-radius: 8px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 12px;
}
.dash-status { display: flex; align-items: center; gap: 6px; font-size: 11.5px; color: rgba(255,255,255,0.7); }
.dash-status-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--mint); box-shadow: 0 0 0 0 rgba(0,214,143,0.6); animation: pulseDot 2s infinite; }
.dash-stats { display: grid; grid-template-columns: 1fr auto 1fr; align-items: stretch; gap: 10px; margin-bottom: 18px; }
.dash-stat { border-radius: 14px; padding: 14px; text-align: center; border: 1px solid rgba(255,255,255,0.08); }
.dash-stat.was { background: rgba(248,113,113,0.08); border-color: rgba(248,113,113,0.18); }
.dash-stat.is  { background: rgba(0,214,143,0.10); border-color: rgba(0,214,143,0.25); }
.dash-stat-label { font-size: 10px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 6px; }
.dash-stat.is .dash-stat-label { color: rgba(0,214,143,0.7); }
.dash-stat-val { font-family: var(--font-head); font-size: 30px; font-weight: 800; line-height: 1; letter-spacing: -0.03em; }
.dash-stat.was .dash-stat-val { color: #F87171; }
.dash-stat.is  .dash-stat-val { color: var(--mint); }
.dash-stat-sub { font-size: 10.5px; color: rgba(255,255,255,0.4); margin-top: 4px; }
.dash-arrow { color: rgba(255,255,255,0.3); font-size: 22px; display: flex; align-items: center; }

.dash-chart-wrap {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 16px;
  margin-bottom: 16px;
}
.dash-chart-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.dash-chart-title { font-size: 12.5px; font-weight: 700; color: rgba(255,255,255,0.7); }
.dash-chart-delta { color: var(--mint); font-size: 13px; font-weight: 700; }
.dash-bookings { display: flex; flex-direction: column; gap: 8px; }
.booking-item {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
}
.booking-avatar {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--grad-accent);
  color: #fff;
  font-size: 11px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.booking-name { font-size: 12.5px; font-weight: 700; color: #fff; }
.booking-service { font-size: 11px; color: rgba(255,255,255,0.5); }
.booking-time { font-size: 11.5px; font-weight: 600; color: rgba(255,255,255,0.65); }
.booking-new {
  font-size: 9.5px; font-weight: 800; letter-spacing: 0.08em;
  background: var(--mint); color: var(--ink);
  padding: 3px 7px; border-radius: 6px;
}

.hero-float-badge {
  position: absolute;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 12px 14px;
  display: flex; align-items: center; gap: 10px;
  box-shadow: 0 16px 40px -10px rgba(11,15,31,0.18);
  animation: float 4.5s ease-in-out infinite;
  z-index: 2;
}
.badge-icon {
  width: 38px; height: 38px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.badge-icon.green { background: var(--mint-pale); }
.badge-icon.indigo { background: var(--indigo-pale); }
.badge-text-top { font-size: 10.5px; color: var(--text-mute); font-weight: 600; }
.badge-text-val { font-family: var(--font-head); font-size: 15px; font-weight: 700; color: var(--ink); letter-spacing: -0.02em; }
.badge-text-val span { color: var(--mint-deep); }
.badge-1 { top: -22px; right: -12px; }
.badge-2 { bottom: -18px; left: -16px; animation-delay: -2s; }

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-right { max-width: 480px; margin: 0 auto; width: 100%; }
  section.hero { padding: 110px 0 70px; }
}
