/* Beebot Landing — Animations & extra sections */
:root {
  --landing-ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --landing-ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

/* Hero */
.beeup-landing-hero {
  position: relative;
  overflow: hidden;
}
.beeup-landing-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% -20%, rgba(11, 174, 225, 0.25) 0%, transparent 50%),
              radial-gradient(ellipse 60% 40% at 80% 60%, rgba(246, 144, 17, 0.15) 0%, transparent 45%);
  pointer-events: none;
}
.beeup-landing-hero .hero-inner {
  position: relative;
  z-index: 1;
}
.beeup-landing-hero .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 24px;
  animation: landing-fade-down 0.8s var(--landing-ease-out) both;
}
.beeup-landing-hero h1 {
  animation: landing-fade-up 0.9s var(--landing-ease-out) 0.15s both;
}
.beeup-landing-hero .hero-lead {
  animation: landing-fade-up 0.9s var(--landing-ease-out) 0.3s both;
}
.beeup-landing-hero .hero-actions {
  animation: landing-fade-up 0.9s var(--landing-ease-out) 0.45s both;
}
.beeup-landing-hero .hero-visual {
  margin-top: 48px;
  animation: landing-fade-up 1s var(--landing-ease-out) 0.5s both;
}
.hero-image-wrap {
  max-width: 880px;
  margin: 0 auto 24px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 3/2;
}
@media (min-width: 900px) {
  .beeup-landing-hero h1 { font-size: 3rem; }
}
.beeup-landing-stats + .beeup-landing-section {
  padding-top: 80px;
}

/* Floating orbs (decorative) */
.hero-orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.4;
  animation: landing-float 8s var(--landing-ease-in-out) infinite;
}
.hero-orb-1 { width: 280px; height: 280px; background: var(--beeup-cyan); top: 10%; left: 5%; animation-delay: 0s; }
.hero-orb-2 { width: 200px; height: 200px; background: var(--beeup-orange); top: 60%; right: 10%; animation-delay: -3s; }
.hero-orb-3 { width: 160px; height: 160px; background: rgba(255,255,255,0.2); bottom: 20%; left: 20%; animation-delay: -5s; }

@keyframes landing-fade-down {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes landing-fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes landing-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(20px, -15px) scale(1.05); }
  66% { transform: translate(-10px, 10px) scale(0.98); }
}

/* Dashboard mockup (detailed) */
.hero-dashboard-mock {
  max-width: 720px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.05) inset;
}
.mock-topbar {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.mock-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}
.mock-logo-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--beeup-orange);
}
.mock-logo-text {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
}
.mock-nav {
  display: flex;
  gap: 4px;
}
.mock-nav-item {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  padding: 4px 10px;
  border-radius: 6px;
}
.mock-nav-item.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}
.mock-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  margin-left: auto;
}
.mock-body {
  display: grid;
  grid-template-columns: 120px 1fr;
  min-height: 220px;
}
.mock-sidebar {
  padding: 12px 8px;
  background: rgba(0, 0, 0, 0.15);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}
.mock-menu-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
  padding: 8px 10px;
  border-radius: 8px;
  margin-bottom: 2px;
}
.mock-menu-item .mock-menu-icon {
  font-size: 14px;
  opacity: 0.9;
}
.mock-content {
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mock-cards-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.mock-stat-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.mock-stat-num {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.2;
}
.mock-stat-txt {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.5);
}
.mock-table-wrap {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
}
.mock-table-header {
  font-size: 10px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.mock-table-row {
  display: grid;
  grid-template-columns: 1.2fr 1.5fr 0.8fr;
  gap: 12px;
  padding: 8px 12px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.mock-table-row:last-child {
  border-bottom: none;
}
.mock-channel {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.mock-channel-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}
.mock-channel-dot.wa { background: #25D366; }
.mock-channel-dot.tg { background: #0088cc; }
.mock-channel-dot.dc { background: #5865F2; }
.mock-badge.ok {
  font-size: 10px;
  color: rgba(34, 197, 94, 0.95);
  background: rgba(34, 197, 94, 0.2);
  padding: 2px 6px;
  border-radius: 4px;
  width: fit-content;
}
@media (max-width: 640px) {
  .mock-body { grid-template-columns: 1fr; }
  .mock-sidebar { display: none; }
  .mock-cards-row { grid-template-columns: 1fr; }
  .mock-table-row { grid-template-columns: 1fr 1fr auto; padding: 6px 10px; font-size: 10px; }
}

/* Stats bar */
.beeup-landing-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: var(--beeup-content-max);
  margin: -40px auto 0;
  padding: 0 24px;
  position: relative;
  z-index: 10;
}
@media (max-width: 900px) {
  .beeup-landing-stats { grid-template-columns: repeat(2, 1fr); margin-top: -24px; }
}
@media (max-width: 480px) {
  .beeup-landing-stats { grid-template-columns: 1fr; }
}
.beeup-landing-stat {
  background: var(--beeup-card-bg);
  border-radius: var(--beeup-radius);
  padding: 24px;
  text-align: center;
  box-shadow: var(--beeup-shadow-lg);
  border: 1px solid var(--beeup-border);
  animation: landing-stat-in 0.6s var(--landing-ease-out) both;
}
.beeup-landing-stat:nth-child(1) { animation-delay: 0.1s; }
.beeup-landing-stat:nth-child(2) { animation-delay: 0.2s; }
.beeup-landing-stat:nth-child(3) { animation-delay: 0.3s; }
.beeup-landing-stat:nth-child(4) { animation-delay: 0.4s; }
.beeup-landing-stat-icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(246, 144, 17, 0.12);
  border-radius: 12px;
  color: var(--beeup-primary);
}
.beeup-landing-stat-icon svg {
  width: 22px;
  height: 22px;
}
.beeup-landing-stat-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--beeup-primary);
  line-height: 1.2;
}
.beeup-landing-stat-label {
  font-size: 0.9rem;
  color: var(--beeup-muted);
  margin-top: 4px;
}
@keyframes landing-stat-in {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Section reveal */
.beeup-landing-section {
  opacity: 0;
  animation: landing-section-in 0.8s var(--landing-ease-out) 0.2s forwards;
}
.beeup-landing-section.landing-visible {
  opacity: 1;
}
@keyframes landing-section-in {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Section images (full-width photos) */
.landing-section-image {
  margin-top: 32px;
  margin-bottom: 8px;
  border-radius: var(--beeup-radius);
  overflow: hidden;
  box-shadow: var(--beeup-shadow-lg);
}
.landing-section-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.landing-section-image-features img {
  max-height: 380px;
  aspect-ratio: 2/1;
}

/* Features grid with icons & stagger */
.beeup-landing-features {
  margin-top: 40px;
}
.beeup-landing-feature {
  text-align: center;
  padding: 32px 24px;
  border-radius: var(--beeup-radius);
  background: var(--beeup-card-bg);
  border: 1px solid var(--beeup-border);
  box-shadow: var(--beeup-shadow);
  transition: transform 0.3s var(--landing-ease-out), box-shadow 0.3s;
  animation: landing-card-in 0.6s var(--landing-ease-out) both;
}
.beeup-landing-feature:nth-child(1) { animation-delay: 0.1s; }
.beeup-landing-feature:nth-child(2) { animation-delay: 0.2s; }
.beeup-landing-feature:nth-child(3) { animation-delay: 0.3s; }
.beeup-landing-feature:nth-child(4) { animation-delay: 0.4s; }
.beeup-landing-feature:hover {
  transform: translateY(-6px);
  box-shadow: var(--beeup-shadow-lg);
}
.beeup-landing-feature-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(246, 144, 17, 0.12) 0%, rgba(11, 174, 225, 0.12) 100%);
  border-radius: 14px;
  color: var(--beeup-primary);
}
.beeup-landing-feature-icon svg {
  width: 28px;
  height: 28px;
}
.beeup-landing-feature h3 {
  font-size: 1.15rem;
  color: var(--beeup-heading);
  margin: 0 0 8px;
}
.beeup-landing-feature p {
  color: var(--beeup-muted);
  font-size: 14px;
  margin: 0;
  line-height: 1.55;
}
@keyframes landing-card-in {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* How it works */
.beeup-landing-steps,
.landing-steps-with-images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 40px;
  position: relative;
}
@media (max-width: 768px) {
  .beeup-landing-steps,
  .landing-steps-with-images { grid-template-columns: 1fr; }
}
.landing-step-image {
  border-radius: var(--beeup-radius);
  overflow: hidden;
  margin-bottom: 16px;
  box-shadow: var(--beeup-shadow);
}
.landing-step-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 4/3;
}
.beeup-landing-step {
  text-align: center;
  position: relative;
  animation: landing-card-in 0.6s var(--landing-ease-out) both;
}
.beeup-landing-step:nth-child(1) { animation-delay: 0.15s; }
.beeup-landing-step:nth-child(2) { animation-delay: 0.3s; }
.beeup-landing-step:nth-child(3) { animation-delay: 0.45s; }
.beeup-landing-step-num {
  width: 48px;
  height: 48px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--beeup-primary) 0%, var(--beeup-orange-700) 100%);
  color: var(--beeup-bg-darker);
  font-weight: 700;
  font-size: 1.25rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(246, 144, 17, 0.35);
}
.beeup-landing-step h3 {
  font-size: 1.1rem;
  color: var(--beeup-heading);
  margin: 0 0 8px;
}
.beeup-landing-step p {
  color: var(--beeup-muted);
  font-size: 14px;
  margin: 0;
}

/* Platforms strip */
.beeup-landing-platforms {
  background: linear-gradient(135deg, var(--beeup-bg-darker) 0%, var(--beeup-bg-dark) 100%);
  padding: 60px 24px;
  margin: 0;
}
.beeup-landing-platforms .beeup-landing-section {
  max-width: var(--beeup-content-max);
  margin: 0 auto;
  padding: 0;
}
.beeup-landing-platforms h2 {
  color: #fff;
  margin-bottom: 40px;
}
.beeup-platform-grid {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.beeup-platform-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 28px 32px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--beeup-radius);
  min-width: 200px;
  max-width: 240px;
  transition: transform 0.3s, background 0.3s, box-shadow 0.3s;
  animation: landing-card-in 0.6s var(--landing-ease-out) both;
}
.beeup-platform-item:nth-child(1) { animation-delay: 0.1s; }
.beeup-platform-item:nth-child(2) { animation-delay: 0.2s; }
.beeup-platform-item:nth-child(3) { animation-delay: 0.3s; }
.beeup-platform-item:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}
.beeup-platform-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  padding: 12px;
}
.beeup-platform-icon svg {
  width: 32px;
  height: 32px;
}
.beeup-platform-icon-wa {
  background: rgba(37, 211, 102, 0.2);
  color: #25D366;
}
.beeup-platform-icon-tg {
  background: rgba(0, 136, 204, 0.25);
  color: #0088cc;
}
.beeup-platform-icon-dc {
  background: rgba(88, 101, 242, 0.25);
  color: #5865F2;
}
.beeup-platform-item span:nth-of-type(1) {
  font-weight: 600;
  color: #fff;
  font-size: 1.1rem;
}
.beeup-platform-desc {
  font-size: 0.8rem !important;
  color: rgba(255, 255, 255, 0.6) !important;
  text-align: center;
  line-height: 1.4;
}

/* Testimonial / quote */
.beeup-landing-quote-with-image {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 900px;
  margin: 48px auto 0;
  flex-wrap: wrap;
  justify-content: center;
}
.landing-quote-image {
  flex: 0 0 200px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: var(--beeup-shadow-lg);
}
.landing-quote-image img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 1;
  object-fit: cover;
}
.beeup-landing-quote {
  flex: 1;
  min-width: 280px;
  max-width: 700px;
  margin: 0;
  padding: 40px 48px;
  background: linear-gradient(135deg, rgba(246, 144, 17, 0.06) 0%, rgba(11, 174, 225, 0.06) 100%);
  border-radius: var(--beeup-radius);
  border-left: 4px solid var(--beeup-primary);
  animation: landing-card-in 0.6s var(--landing-ease-out) 0.3s both;
}
.beeup-landing-quote p {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--beeup-body);
  margin: 0 0 16px;
  font-style: italic;
}
.beeup-landing-quote cite {
  font-size: 0.9rem;
  color: var(--beeup-muted);
  font-style: normal;
}

/* CTA section */
.beeup-landing-cta {
  position: relative;
  overflow: hidden;
}
.landing-cta-bg-image {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.landing-cta-bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
}
.beeup-landing-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 100%, rgba(11, 174, 225, 0.08) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
}
.beeup-landing-cta .cta-inner {
  position: relative;
  z-index: 2;
}
.beeup-landing-cta h2 {
  margin: 0 0 12px;
  font-size: 1.75rem;
  color: var(--beeup-heading);
}
.beeup-landing-cta .cta-sub {
  color: var(--beeup-muted);
  margin-bottom: 28px;
}
.beeup-landing-cta .beeup-btn {
  margin: 0 8px;
}

/* Footer */
.beeup-landing-footer {
  padding: 32px 24px;
  border-top: 1px solid var(--beeup-border);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--beeup-muted);
}

/* Nav scroll effect (optional: add .scrolled in JS) */
.beeup-landing-nav.scrolled {
  box-shadow: 0 4px 20px rgba(8, 40, 79, 0.08);
}
