/* Landing Page Styles */

/* WhatsApp floating button */
.whatsapp-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 9999;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25d366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,.45);
  transition: transform .2s, box-shadow .2s;
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37,211,102,.6);
}
.whatsapp-float svg { display: block; }
:root {
  --primary: #dc3545;
  --primary-dark: #c0392b;
  --font-serif: 'Playfair Display', serif;
  --font-sans: 'Inter', sans-serif;
}

body { font-family: var(--font-sans); color: #2d3436; overflow-x: hidden; }

/* Navbar */
.landing-nav {
  background: rgba(26, 26, 46, 0.95) !important;
  backdrop-filter: blur(10px);
  padding: 14px 0;
  transition: all .3s;
}
.landing-brand {
  font-family: var(--font-serif); font-size: 1.4rem; font-weight: 700;
  letter-spacing: -.5px;
}

/* Hero */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  display: flex; align-items: center; position: relative;
  padding-top: 80px;
}

.hero-overlay {
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content { position: relative; z-index: 1; padding: 60px 20px; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(220,53,69,.2); color: #ff8a95;
  padding: 6px 16px; border-radius: 100px; font-size: .875rem;
  border: 1px solid rgba(220,53,69,.3);
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700; line-height: 1.2; margin: 20px 0 16px;
}

.hero-highlight {
  background: linear-gradient(135deg, #dc3545, #ff6b7a);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

.hero-subtitle { font-size: 1.1rem; color: rgba(255,255,255,.7); line-height: 1.7; }

.hero-cta .btn { border-radius: 12px; font-weight: 600; letter-spacing: .3px; }

.hero-scroll-indicator {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,.4); font-size: 1.5rem;
  animation: bounce 2s infinite;
}
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(-10px)} }

/* Stats */
.stat-number { font-size: 2rem; font-weight: 800; color: var(--primary); }
.stat-label { font-size: .875rem; color: #6c757d; margin-top: 4px; }

/* Sections */
.py-6 { padding-top: 80px !important; padding-bottom: 80px !important; }
.section-tag {
  display: inline-block; background: rgba(220,53,69,.1); color: var(--primary);
  padding: 4px 16px; border-radius: 100px; font-size: .8rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .1em; margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-serif); font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700; margin-bottom: 12px;
}
.section-subtitle { font-size: 1rem; color: #6c757d; max-width: 600px; margin: 0 auto; }

/* Feature cards */
.feature-card {
  background: white; border-radius: 16px; padding: 28px;
  border: 1px solid #eee; transition: all .3s;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,.1); border-color: #dc3545; }
.feature-icon {
  width: 56px; height: 56px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 16px;
}
.bg-danger-soft { background: rgba(220,53,69,.1); }
.bg-primary-soft { background: rgba(13,110,253,.1); }
.bg-success-soft { background: rgba(25,135,84,.1); }
.bg-warning-soft { background: rgba(255,193,7,.1); }
.bg-info-soft { background: rgba(13,202,240,.1); }
.bg-purple-soft { background: rgba(111,66,193,.1); }
.text-purple { color: #6f42c1; }

.feature-title { font-weight: 700; margin-bottom: 8px; }
.feature-desc { color: #6c757d; font-size: .9rem; line-height: 1.6; margin: 0; }

/* Steps */
.steps-list { display: flex; flex-direction: column; gap: 24px; }
.step-item { display: flex; align-items: flex-start; gap: 20px; }
.step-num {
  width: 48px; height: 48px; flex-shrink: 0;
  background: linear-gradient(135deg, #dc3545, #ff6b7a);
  color: white; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1.1rem;
}
.step-title { font-weight: 700; margin-bottom: 4px; }
.step-desc { font-size: .9rem; margin: 0; }

/* Dashboard preview */
.dashboard-preview { perspective: 1000px; }
.preview-card { transform: rotateY(-5deg) rotateX(3deg); transition: transform .5s; }
.preview-card:hover { transform: rotateY(0) rotateX(0); }
.preview-stat { transition: transform .2s; }
.preview-dot { width: 8px; height: 8px; flex-shrink: 0; }

/* Plans */
.plan-card {
  background: white; border-radius: 20px; padding: 32px;
  border: 2px solid #eee; position: relative; transition: all .3s;
}
.plan-card:hover { border-color: #dc3545; box-shadow: 0 12px 32px rgba(220,53,69,.15); }
.plan-featured { border-color: #dc3545; background: linear-gradient(135deg, #fff 0%, #fff9f9 100%); }
.plan-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: #dc3545; color: white; padding: 4px 20px; border-radius: 100px;
  font-size: .8rem; font-weight: 700;
}
.plan-name { font-weight: 700; color: #2d3436; }
.plan-price { font-size: 2rem; font-weight: 800; color: var(--primary); margin: 8px 0 20px; }
.plan-period { font-size: 1rem; color: #6c757d; font-weight: 400; }
.plan-features { list-style: none; padding: 0; margin: 0 0 24px; display: flex; flex-direction: column; gap: 10px; }
.plan-features li { font-size: .9rem; }

/* Testimonials */
.testimonial-card {
  background: white; border-radius: 16px; padding: 28px;
  border: 1px solid #eee; transition: all .3s;
}
.testimonial-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,.08); }
.testimonial-stars { color: #ffc107; font-size: 1.1rem; margin-bottom: 12px; }
.testimonial-text { color: #495057; line-height: 1.7; font-style: italic; margin-bottom: 16px; }
.testimonial-author strong { display: block; }
.testimonial-author span { color: #6c757d; font-size: .85rem; }

/* CTA */
.cta-section { background: linear-gradient(135deg, #c0392b, #dc3545, #ff6b7a); }
.cta-title { font-family: var(--font-serif); font-size: 2rem; font-weight: 700; }
.cta-subtitle { font-size: 1rem; opacity: .85; }
.btn-white { background: white; color: #dc3545; font-weight: 700; border-radius: 12px; }
.btn-white:hover { background: #f8f9fa; color: #c0392b; }

/* Footer */
.landing-footer { background: #1a1a2e !important; }
