/* ============================================
   AgendAI Landing Page - Dedicated Stylesheet
   ============================================ */

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, sans-serif;
  color: #1a1a2e;
  background: #ffffff;
  overflow-x: hidden;
  line-height: 1.6;
}

/* ============================================
   CSS Variables
   ============================================ */
:root {
  --lp-navy: #1C3A4E;
  --lp-navy-dark: #0f2332;
  --lp-navy-light: #2a5470;
  --lp-lime: #B6FF6A;
  --lp-lime-dark: #9de04f;
  --lp-lime-light: #d4ff9e;
  --lp-white: #ffffff;
  --lp-gray-50: #f8fafc;
  --lp-gray-100: #f1f5f9;
  --lp-gray-200: #e2e8f0;
  --lp-gray-300: #cbd5e1;
  --lp-gray-400: #94a3b8;
  --lp-gray-500: #64748b;
  --lp-gray-600: #475569;
  --lp-gray-700: #334155;
  --lp-gray-800: #1e293b;
  --lp-gray-900: #0f172a;
  --lp-indigo: #6366f1;
  --lp-indigo-dark: #4f46e5;
  --lp-red: #ef4444;
  --lp-green: #22c55e;
  --lp-orange: #f97316;
  --lp-radius: 12px;
  --lp-radius-lg: 20px;
  --lp-radius-full: 9999px;
  --lp-shadow: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -2px rgba(0,0,0,0.05);
  --lp-shadow-lg: 0 20px 40px -12px rgba(0,0,0,0.12);
  --lp-shadow-xl: 0 25px 50px -12px rgba(0,0,0,0.18);
  --lp-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   Animations
   ============================================ */
@keyframes lp-fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes lp-fadeInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes lp-fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes lp-scaleIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes lp-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes lp-pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(182, 255, 106, 0.4); }
  50% { box-shadow: 0 0 0 20px rgba(182, 255, 106, 0); }
}

@keyframes lp-gradient-shift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes lp-slide-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.lp-animate {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.lp-animate.lp-visible {
  opacity: 1;
  transform: translateY(0);
}

.lp-animate-delay-1 { transition-delay: 0.1s; }
.lp-animate-delay-2 { transition-delay: 0.2s; }
.lp-animate-delay-3 { transition-delay: 0.3s; }
.lp-animate-delay-4 { transition-delay: 0.4s; }
.lp-animate-delay-5 { transition-delay: 0.5s; }

.lp-float { animation: lp-float 3s ease-in-out infinite; }

/* ============================================
   Typography
   ============================================ */
.lp-heading-xl {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.lp-heading-lg {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.lp-heading-md {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 600;
  line-height: 1.3;
}

.lp-text-lg {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  line-height: 1.7;
  color: var(--lp-gray-600);
}

.lp-text-sm {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--lp-gray-500);
}

/* ============================================
   Layout
   ============================================ */
.lp-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.lp-section {
  padding: 6rem 0;
}

.lp-section-dark {
  background: var(--lp-navy);
  color: var(--lp-white);
}

.lp-section-gray {
  background: var(--lp-gray-50);
}

.lp-section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.lp-section-header .lp-badge {
  margin-bottom: 1rem;
}

.lp-section-header .lp-heading-lg {
  margin-bottom: 1rem;
}

.lp-section-header .lp-text-lg {
  color: var(--lp-gray-500);
}

/* ============================================
   Badges / Tags
   ============================================ */
.lp-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: var(--lp-radius-full);
  letter-spacing: 0.02em;
}

.lp-badge-lime {
  background: rgba(182, 255, 106, 0.15);
  color: var(--lp-lime-dark);
  border: 1px solid rgba(182, 255, 106, 0.3);
}

.lp-badge-navy {
  background: rgba(28, 58, 78, 0.08);
  color: var(--lp-navy);
  border: 1px solid rgba(28, 58, 78, 0.12);
}

.lp-badge-white {
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

/* ============================================
   Buttons
   ============================================ */
.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--lp-radius);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: var(--lp-transition);
  white-space: nowrap;
}

.lp-btn-primary {
  background: var(--lp-lime);
  color: var(--lp-navy-dark);
}

.lp-btn-primary:hover {
  background: var(--lp-lime-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(182, 255, 106, 0.35);
}

.lp-btn-secondary {
  background: transparent;
  color: var(--lp-white);
  border: 2px solid rgba(255, 255, 255, 0.25);
}

.lp-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

.lp-btn-dark {
  background: var(--lp-navy);
  color: var(--lp-white);
}

.lp-btn-dark:hover {
  background: var(--lp-navy-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(28, 58, 78, 0.3);
}

.lp-btn-outline {
  background: transparent;
  color: var(--lp-navy);
  border: 2px solid var(--lp-gray-200);
}

.lp-btn-outline:hover {
  border-color: var(--lp-navy);
  transform: translateY(-2px);
}

.lp-btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  border-radius: 14px;
}

.lp-btn-sm {
  padding: 0.55rem 1.25rem;
  font-size: 0.875rem;
}

.lp-btn i {
  width: 18px;
  height: 18px;
}

/* ============================================
   Navbar
   ============================================ */
.lp-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: var(--lp-transition);
  background: transparent;
}

.lp-navbar.lp-navbar-scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  padding: 0.7rem 0;
}

.lp-navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.lp-navbar-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.lp-navbar-logo-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lp-lime);
  font-weight: 800;
  font-size: 0.95rem;
  transition: var(--lp-transition);
}

.lp-navbar-scrolled .lp-navbar-logo-icon {
  background: var(--lp-navy);
}

.lp-navbar-logo-text {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--lp-white);
  transition: var(--lp-transition);
}

.lp-navbar-logo-text span {
  color: var(--lp-lime);
  transition: var(--lp-transition);
}

.lp-navbar-scrolled .lp-navbar-logo-text {
  color: var(--lp-navy);
}

.lp-navbar-scrolled .lp-navbar-logo-text span {
  color: var(--lp-lime-dark);
}

.lp-navbar-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.lp-navbar-links a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--lp-transition);
}

.lp-navbar-links a:hover {
  color: var(--lp-white);
}

.lp-navbar-scrolled .lp-navbar-links a {
  color: var(--lp-gray-600);
}

.lp-navbar-scrolled .lp-navbar-links a:hover {
  color: var(--lp-navy);
}

.lp-navbar-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.lp-navbar-login {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.55rem 1.25rem;
  border-radius: var(--lp-radius);
  transition: var(--lp-transition);
}

.lp-navbar-login:hover {
  background: rgba(255, 255, 255, 0.1);
}

.lp-navbar-scrolled .lp-navbar-login {
  color: var(--lp-navy);
}

.lp-navbar-scrolled .lp-navbar-login:hover {
  background: var(--lp-gray-100);
}

/* Mobile menu button */
#lp-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--lp-white);
  transition: var(--lp-transition);
}

.lp-navbar-scrolled #lp-menu-btn {
  color: var(--lp-navy);
}

#lp-menu-btn i {
  width: 24px;
  height: 24px;
}

/* Mobile menu */
.lp-mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--lp-white);
  z-index: 999;
  padding: 5rem 2rem 2rem;
  flex-direction: column;
  gap: 1.5rem;
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  transition: var(--lp-transition);
}

.lp-mobile-menu.lp-mobile-menu-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.lp-mobile-menu a {
  display: block;
  text-decoration: none;
  color: var(--lp-navy);
  font-weight: 600;
  font-size: 1.25rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--lp-gray-100);
}

.lp-mobile-menu .lp-btn {
  margin-top: 1rem;
  text-align: center;
}

/* ============================================
   Hero Section
   ============================================ */
.lp-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(165deg, var(--lp-navy) 0%, var(--lp-navy-dark) 55%, #0d1b26 100%);
  position: relative;
  overflow: hidden;
  padding-top: 5rem;
}

.lp-hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 70%;
  height: 120%;
  background: radial-gradient(ellipse at center, rgba(182, 255, 106, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.lp-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--lp-white), transparent);
  pointer-events: none;
  z-index: 2;
}

.lp-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 3;
}

.lp-hero-content {
  animation: lp-fadeInLeft 0.8s ease-out;
}

.lp-hero-badge {
  margin-bottom: 1.5rem;
}

.lp-hero-title {
  color: var(--lp-white);
  margin-bottom: 1.5rem;
}

.lp-hero-title .lp-highlight {
  color: var(--lp-lime);
  position: relative;
}

.lp-hero-subtitle {
  font-size: clamp(1.1rem, 1.8vw, 1.3rem);
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 520px;
}

.lp-hero-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.lp-hero-cta .lp-btn-primary {
  animation: lp-pulse-glow 2s infinite;
}

.lp-hero-trust {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.lp-hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
}

.lp-hero-trust-item i {
  width: 16px;
  height: 16px;
  color: var(--lp-lime);
}

/* Hero Visual / Mockup */
.lp-hero-visual {
  position: relative;
  animation: lp-fadeInRight 0.8s ease-out 0.2s both;
}

.lp-hero-mockup {
  position: relative;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
}

.lp-hero-phone {
  background: var(--lp-white);
  border-radius: 28px;
  padding: 1.5rem;
  box-shadow: var(--lp-shadow-xl), 0 0 80px rgba(182, 255, 106, 0.08);
  position: relative;
}

.lp-hero-phone-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.lp-hero-phone-title {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--lp-navy);
}

.lp-hero-phone-date {
  font-size: 0.8rem;
  color: var(--lp-gray-400);
  font-weight: 500;
}

.lp-hero-phone-appointment {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem;
  background: var(--lp-gray-50);
  border-radius: var(--lp-radius);
  margin-bottom: 0.6rem;
  border-left: 3px solid var(--lp-lime);
  transition: var(--lp-transition);
}

.lp-hero-phone-appointment:nth-child(2) {
  border-left-color: var(--lp-indigo);
}

.lp-hero-phone-appointment:nth-child(3) {
  border-left-color: var(--lp-orange);
}

.lp-hero-phone-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--lp-white);
  flex-shrink: 0;
}

.lp-hero-phone-info {
  flex: 1;
  min-width: 0;
}

.lp-hero-phone-name {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--lp-gray-800);
}

.lp-hero-phone-service {
  font-size: 0.75rem;
  color: var(--lp-gray-400);
}

.lp-hero-phone-time {
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--lp-navy);
  white-space: nowrap;
}

.lp-hero-phone-status {
  padding: 0.2rem 0.6rem;
  border-radius: var(--lp-radius-full);
  font-size: 0.65rem;
  font-weight: 600;
  white-space: nowrap;
}

.lp-status-confirmed {
  background: rgba(34, 197, 94, 0.12);
  color: #16a34a;
}

.lp-status-pending {
  background: rgba(249, 115, 22, 0.12);
  color: #ea580c;
}

/* Floating WhatsApp notification */
.lp-hero-whatsapp-float {
  position: absolute;
  bottom: -20px;
  left: -30px;
  background: var(--lp-white);
  border-radius: 14px;
  padding: 0.85rem 1.1rem;
  box-shadow: var(--lp-shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.65rem;
  animation: lp-float 3s ease-in-out infinite;
  z-index: 5;
}

.lp-hero-whatsapp-icon {
  width: 36px;
  height: 36px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}

.lp-hero-whatsapp-icon i {
  width: 18px;
  height: 18px;
}

.lp-hero-whatsapp-text {
  font-size: 0.78rem;
  color: var(--lp-gray-700);
  font-weight: 500;
}

.lp-hero-whatsapp-text strong {
  display: block;
  font-size: 0.72rem;
  color: #25D366;
}

/* Floating stat card */
.lp-hero-stat-float {
  position: absolute;
  top: 30px;
  right: -20px;
  background: var(--lp-white);
  border-radius: 14px;
  padding: 0.85rem 1.1rem;
  box-shadow: var(--lp-shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.65rem;
  animation: lp-float 3s ease-in-out infinite 1.5s;
  z-index: 5;
}

.lp-hero-stat-icon {
  width: 36px;
  height: 36px;
  background: rgba(182, 255, 106, 0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lp-navy);
}

.lp-hero-stat-icon i {
  width: 18px;
  height: 18px;
}

.lp-hero-stat-text {
  font-size: 0.78rem;
  color: var(--lp-gray-500);
}

.lp-hero-stat-number {
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--lp-navy);
  display: block;
}

/* ============================================
   Social Proof Bar
   ============================================ */
.lp-social-proof {
  padding: 3rem 0;
  background: var(--lp-white);
  border-bottom: 1px solid var(--lp-gray-100);
}

.lp-social-proof-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3.5rem;
  flex-wrap: wrap;
}

.lp-social-proof-item {
  text-align: center;
}

.lp-social-proof-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--lp-navy);
  display: block;
  line-height: 1.2;
}

.lp-social-proof-label {
  font-size: 0.85rem;
  color: var(--lp-gray-500);
  font-weight: 500;
}

/* ============================================
   Pain Points / Problems Section
   ============================================ */
.lp-pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.lp-pain-card {
  background: var(--lp-white);
  border: 1px solid var(--lp-gray-200);
  border-radius: var(--lp-radius-lg);
  padding: 2rem;
  transition: var(--lp-transition);
  position: relative;
  overflow: hidden;
}

.lp-pain-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--lp-red);
  opacity: 0.7;
}

.lp-pain-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--lp-shadow-lg);
}

.lp-pain-icon {
  width: 48px;
  height: 48px;
  background: rgba(239, 68, 68, 0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--lp-red);
}

.lp-pain-icon i {
  width: 24px;
  height: 24px;
}

.lp-pain-title {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--lp-gray-800);
  margin-bottom: 0.5rem;
}

.lp-pain-text {
  font-size: 0.9rem;
  color: var(--lp-gray-500);
  line-height: 1.6;
}

/* ============================================
   Features Section
   ============================================ */
.lp-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.lp-feature-card {
  background: var(--lp-white);
  border: 1px solid var(--lp-gray-200);
  border-radius: var(--lp-radius-lg);
  padding: 2rem;
  transition: var(--lp-transition);
  position: relative;
}

.lp-feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--lp-shadow-lg);
  border-color: var(--lp-lime);
}

.lp-feature-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, rgba(182, 255, 106, 0.15), rgba(28, 58, 78, 0.05));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--lp-navy);
  transition: var(--lp-transition);
}

.lp-feature-card:hover .lp-feature-icon {
  background: var(--lp-navy);
  color: var(--lp-lime);
  transform: scale(1.08);
}

.lp-feature-icon i {
  width: 24px;
  height: 24px;
}

.lp-feature-title {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--lp-gray-800);
  margin-bottom: 0.5rem;
}

.lp-feature-text {
  font-size: 0.9rem;
  color: var(--lp-gray-500);
  line-height: 1.6;
}

/* ============================================
   How It Works
   ============================================ */
.lp-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}

.lp-steps-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: var(--lp-gray-200);
  z-index: 0;
}

.lp-step-card {
  text-align: center;
  position: relative;
  z-index: 1;
}

.lp-step-number {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--lp-navy);
  color: var(--lp-lime);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 auto 1.25rem;
  box-shadow: 0 8px 20px rgba(28, 58, 78, 0.2);
  transition: var(--lp-transition);
}

.lp-step-card:hover .lp-step-number {
  background: var(--lp-lime);
  color: var(--lp-navy);
  transform: scale(1.1);
}

.lp-step-title {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--lp-gray-800);
  margin-bottom: 0.4rem;
}

.lp-step-text {
  font-size: 0.85rem;
  color: var(--lp-gray-500);
  line-height: 1.6;
}

/* ============================================
   Big Feature Showcase (alternating)
   ============================================ */
.lp-showcase {
  padding: 5rem 0;
}

.lp-showcase-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 5rem;
}

.lp-showcase-item:last-child {
  margin-bottom: 0;
}

.lp-showcase-item.lp-reverse {
  direction: rtl;
}

.lp-showcase-item.lp-reverse > * {
  direction: ltr;
}

.lp-showcase-visual {
  position: relative;
}

.lp-showcase-img-wrapper {
  background: linear-gradient(135deg, var(--lp-navy), var(--lp-navy-dark));
  border-radius: var(--lp-radius-lg);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}

.lp-showcase-img-wrapper::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(182, 255, 106, 0.1), transparent 70%);
}

.lp-showcase-chat {
  position: relative;
  z-index: 1;
}

.lp-showcase-chat-msg {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.lp-showcase-chat-msg.lp-msg-bot {
  flex-direction: row;
}

.lp-showcase-chat-msg.lp-msg-user {
  flex-direction: row-reverse;
}

.lp-showcase-chat-bubble {
  max-width: 80%;
  padding: 0.85rem 1.1rem;
  border-radius: 14px;
  font-size: 0.85rem;
  line-height: 1.5;
}

.lp-msg-bot .lp-showcase-chat-bubble {
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.9);
  border-bottom-left-radius: 4px;
}

.lp-msg-user .lp-showcase-chat-bubble {
  background: var(--lp-lime);
  color: var(--lp-navy-dark);
  border-bottom-right-radius: 4px;
}

.lp-showcase-chat-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.7rem;
}

.lp-msg-bot .lp-showcase-chat-avatar {
  background: rgba(255, 255, 255, 0.15);
  color: var(--lp-lime);
}

.lp-msg-user .lp-showcase-chat-avatar {
  background: var(--lp-lime);
  color: var(--lp-navy);
}

.lp-showcase-tag {
  display: inline-block;
  margin-bottom: 0.75rem;
}

.lp-showcase-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--lp-gray-900);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.lp-showcase-text {
  font-size: 1rem;
  color: var(--lp-gray-500);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.lp-showcase-list {
  list-style: none;
  padding: 0;
}

.lp-showcase-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-bottom: 0.85rem;
  font-size: 0.95rem;
  color: var(--lp-gray-700);
}

.lp-showcase-list li i {
  width: 20px;
  height: 20px;
  color: var(--lp-green);
  flex-shrink: 0;
  margin-top: 0.15rem;
}

/* Dashboard mockup */
.lp-showcase-dashboard {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.lp-showcase-stat-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--lp-radius);
  padding: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.lp-showcase-stat-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.25rem;
  font-weight: 500;
}

.lp-showcase-stat-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--lp-white);
}

.lp-showcase-stat-change {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--lp-lime);
  margin-top: 0.25rem;
}

/* ============================================
   Pricing Section
   ============================================ */
.lp-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: start;
}

.lp-pricing-card {
  background: var(--lp-white);
  border: 2px solid var(--lp-gray-200);
  border-radius: var(--lp-radius-lg);
  padding: 2.5rem 2rem;
  transition: var(--lp-transition);
  position: relative;
}

.lp-pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--lp-shadow-xl);
}

.lp-pricing-card.lp-pricing-popular {
  border-color: var(--lp-lime);
  box-shadow: 0 20px 60px rgba(182, 255, 106, 0.15);
  transform: scale(1.04);
  z-index: 2;
}

.lp-pricing-card.lp-pricing-popular:hover {
  transform: scale(1.04) translateY(-6px);
}

.lp-pricing-popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--lp-navy);
  color: var(--lp-lime);
  padding: 0.35rem 1.25rem;
  border-radius: var(--lp-radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  white-space: nowrap;
}

.lp-pricing-name {
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--lp-gray-800);
  margin-bottom: 0.5rem;
}

.lp-pricing-desc {
  font-size: 0.85rem;
  color: var(--lp-gray-500);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.lp-pricing-price {
  margin-bottom: 1.5rem;
}

.lp-pricing-currency {
  font-size: 1rem;
  font-weight: 600;
  color: var(--lp-gray-500);
  vertical-align: top;
}

.lp-pricing-amount {
  font-size: 3rem;
  font-weight: 800;
  color: var(--lp-navy);
  line-height: 1;
}

.lp-pricing-period {
  font-size: 0.85rem;
  color: var(--lp-gray-400);
  font-weight: 500;
}

.lp-pricing-features {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.lp-pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.5rem 0;
  font-size: 0.9rem;
  color: var(--lp-gray-600);
}

.lp-pricing-features li i {
  width: 18px;
  height: 18px;
  color: var(--lp-green);
  flex-shrink: 0;
}

.lp-pricing-features li.lp-feature-disabled {
  color: var(--lp-gray-400);
}

.lp-pricing-features li.lp-feature-disabled i {
  color: var(--lp-gray-300);
}

.lp-pricing-cta {
  width: 100%;
}

.lp-pricing-trial {
  text-align: center;
  margin-top: 0.75rem;
  font-size: 0.8rem;
  color: var(--lp-gray-400);
}

/* ============================================
   Testimonials
   ============================================ */
.lp-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.lp-testimonial-card {
  background: var(--lp-white);
  border: 1px solid var(--lp-gray-200);
  border-radius: var(--lp-radius-lg);
  padding: 2rem;
  transition: var(--lp-transition);
}

.lp-testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--lp-shadow-lg);
}

.lp-testimonial-stars {
  display: flex;
  gap: 0.2rem;
  margin-bottom: 1rem;
  color: #facc15;
}

.lp-testimonial-stars i {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.lp-testimonial-text {
  font-size: 0.95rem;
  color: var(--lp-gray-600);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  font-style: italic;
}

.lp-testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.lp-testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--lp-navy), var(--lp-navy-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lp-lime);
  font-weight: 700;
  font-size: 0.9rem;
}

.lp-testimonial-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--lp-gray-800);
}

.lp-testimonial-role {
  font-size: 0.8rem;
  color: var(--lp-gray-500);
}

/* ============================================
   FAQ Section
   ============================================ */
.lp-faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.lp-faq-item {
  border-bottom: 1px solid var(--lp-gray-200);
}

.lp-faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.25rem 0;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--lp-gray-800);
  text-align: left;
  transition: var(--lp-transition);
  font-family: inherit;
}

.lp-faq-question:hover {
  color: var(--lp-navy);
}

.lp-faq-question i {
  width: 20px;
  height: 20px;
  color: var(--lp-gray-400);
  transition: var(--lp-transition);
  flex-shrink: 0;
}

.lp-faq-item.lp-faq-open .lp-faq-question i {
  transform: rotate(45deg);
  color: var(--lp-navy);
}

.lp-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.lp-faq-item.lp-faq-open .lp-faq-answer {
  max-height: 300px;
  padding-bottom: 1.25rem;
}

.lp-faq-answer p {
  font-size: 0.95rem;
  color: var(--lp-gray-500);
  line-height: 1.7;
}

/* ============================================
   Final CTA Section
   ============================================ */
.lp-final-cta {
  padding: 6rem 0;
  background: linear-gradient(165deg, var(--lp-navy) 0%, var(--lp-navy-dark) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.lp-final-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -30%;
  width: 60%;
  height: 200%;
  background: radial-gradient(circle, rgba(182, 255, 106, 0.05), transparent 70%);
  pointer-events: none;
}

.lp-final-cta-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}

.lp-final-cta-title {
  color: var(--lp-white);
  margin-bottom: 1rem;
}

.lp-final-cta-text {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.lp-final-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.lp-final-cta-note {
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ============================================
   Footer
   ============================================ */
.lp-footer {
  background: var(--lp-gray-900);
  color: rgba(255, 255, 255, 0.6);
  padding: 4rem 0 2rem;
}

.lp-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.lp-footer-brand-text {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.45);
}

.lp-footer-title {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--lp-white);
  margin-bottom: 1.25rem;
}

.lp-footer-links {
  list-style: none;
  padding: 0;
}

.lp-footer-links li {
  margin-bottom: 0.75rem;
}

.lp-footer-links a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.88rem;
  transition: var(--lp-transition);
}

.lp-footer-links a:hover {
  color: var(--lp-lime);
}

.lp-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.lp-footer-copyright {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.35);
}

.lp-footer-social {
  display: flex;
  gap: 1rem;
}

.lp-footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  transition: var(--lp-transition);
  text-decoration: none;
}

.lp-footer-social a:hover {
  background: var(--lp-lime);
  color: var(--lp-navy);
}

.lp-footer-social a i {
  width: 16px;
  height: 16px;
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1024px) {
  .lp-hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .lp-hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .lp-hero-cta {
    justify-content: center;
  }

  .lp-hero-trust {
    justify-content: center;
  }

  .lp-hero-visual {
    max-width: 420px;
    margin: 0 auto;
  }

  .lp-features-grid,
  .lp-pain-grid,
  .lp-pricing-grid,
  .lp-testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .lp-steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }

  .lp-steps-grid::before {
    display: none;
  }

  .lp-showcase-item {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .lp-showcase-item.lp-reverse {
    direction: ltr;
  }

  .lp-footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .lp-navbar-links {
    display: none;
  }

  #lp-menu-btn {
    display: block;
  }

  .lp-mobile-menu {
    display: flex;
  }

  .lp-section {
    padding: 4rem 0;
  }

  .lp-features-grid,
  .lp-pain-grid,
  .lp-testimonials-grid {
    grid-template-columns: 1fr;
  }

  .lp-pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .lp-pricing-card.lp-pricing-popular {
    transform: scale(1);
  }

  .lp-pricing-card.lp-pricing-popular:hover {
    transform: translateY(-6px);
  }

  .lp-steps-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .lp-hero {
    min-height: auto;
    padding: 7rem 0 5rem;
  }

  .lp-hero-whatsapp-float {
    left: 10px;
    bottom: -10px;
  }

  .lp-hero-stat-float {
    right: 10px;
    top: 10px;
  }

  .lp-social-proof-inner {
    gap: 2rem;
  }

  .lp-footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .lp-footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .lp-showcase-dashboard {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .lp-container {
    padding: 0 1rem;
  }

  .lp-hero-cta {
    flex-direction: column;
    width: 100%;
  }

  .lp-hero-cta .lp-btn {
    width: 100%;
  }

  .lp-final-cta-actions {
    flex-direction: column;
    width: 100%;
  }

  .lp-final-cta-actions .lp-btn {
    width: 100%;
  }

  .lp-social-proof-inner {
    flex-direction: column;
    gap: 1.5rem;
  }
}

/* ============================================
   Blog Styles
   ============================================ */
.blog-header {
  padding: 8rem 0 3rem;
  text-align: center;
  background: linear-gradient(135deg, var(--lp-navy-dark) 0%, var(--lp-navy) 50%, #2a5a6e 100%);
  color: var(--lp-white);
}

.blog-header .lp-heading-lg {
  color: var(--lp-white);
}

.blog-header .lp-text-lg {
  color: rgba(255, 255, 255, 0.75);
}

.blog-grid-section {
  padding: 3rem 0;
  background: var(--lp-gray-50);
  min-height: 50vh;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.5rem;
}

.blog-card {
  background: var(--lp-white);
  border-radius: 16px;
  padding: 2rem;
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--lp-gray-200);
  transition: var(--lp-transition);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  border-color: var(--lp-lime);
}

.blog-card-category {
  display: inline-block;
  background: rgba(182, 255, 106, 0.15);
  color: var(--lp-navy);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  width: fit-content;
}

.blog-card-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--lp-navy-dark);
  line-height: 1.4;
}

.blog-card-desc {
  color: var(--lp-gray-600);
  font-size: 0.95rem;
  line-height: 1.6;
  flex: 1;
}

.blog-card-meta {
  display: flex;
  gap: 1.25rem;
  color: var(--lp-gray-500);
  font-size: 0.8rem;
  margin-top: 0.5rem;
}

.blog-card-meta span {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

/* Blog Article */
.blog-article-header {
  padding: 7rem 0 2.5rem;
  background: linear-gradient(135deg, var(--lp-navy-dark) 0%, var(--lp-navy) 50%, #2a5a6e 100%);
  color: var(--lp-white);
}

.blog-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  transition: var(--lp-transition);
}

.blog-back-link:hover {
  color: var(--lp-lime);
}

.blog-article-meta-top {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.blog-article-date,
.blog-article-read {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
}

.blog-article-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.blog-article-desc {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 700px;
}

.blog-article-content {
  padding: 3rem 0;
}

.blog-article-body {
  max-width: 750px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--lp-gray-700);
}

.blog-article-body h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--lp-navy-dark);
  margin: 2.5rem 0 1rem;
}

.blog-article-body h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--lp-navy);
  margin: 2rem 0 0.75rem;
}

.blog-article-body p {
  margin-bottom: 1.25rem;
}

.blog-article-body ul,
.blog-article-body ol {
  margin-bottom: 1.25rem;
  padding-left: 1.5rem;
}

.blog-article-body li {
  margin-bottom: 0.5rem;
}

.blog-article-body strong {
  color: var(--lp-navy-dark);
}

.blog-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.95rem;
  border-radius: 12px;
  overflow: hidden;
}

.blog-table thead {
  background: var(--lp-navy);
  color: var(--lp-white);
}

.blog-table th,
.blog-table td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--lp-gray-200);
}

.blog-table tbody tr:hover {
  background: rgba(182, 255, 106, 0.08);
}

/* Blog Chat Example */
.blog-chat-example {
  background: #e5ddd5;
  border-radius: 12px;
  padding: 1rem;
  margin: 1rem 0 1.5rem;
}

.blog-chat-msg {
  max-width: 80%;
  padding: 0.6rem 1rem;
  border-radius: 10px;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  line-height: 1.5;
}

.blog-chat-msg.bot {
  background: var(--lp-white);
  color: var(--lp-navy-dark);
  border-top-left-radius: 0;
}

.blog-chat-msg.user {
  background: #dcf8c6;
  color: var(--lp-navy-dark);
  margin-left: auto;
  border-top-right-radius: 0;
}

/* Blog CTA Box */
.blog-cta-box {
  max-width: 750px;
  margin: 3rem auto;
  background: linear-gradient(135deg, var(--lp-navy-dark), var(--lp-navy));
  border-radius: 20px;
  padding: 2.5rem;
  color: var(--lp-white);
  text-align: center;
}

.blog-cta-box h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.blog-cta-box p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
}

.blog-cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Blog Related */
.blog-related {
  max-width: 750px;
  margin: 2rem auto 0;
}

.blog-related-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--lp-navy-dark);
  margin-bottom: 1.25rem;
}

.blog-related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
}

.blog-related-card {
  background: var(--lp-gray-50);
  border: 1px solid var(--lp-gray-200);
  border-radius: 12px;
  padding: 1.25rem;
  text-decoration: none;
  color: inherit;
  transition: var(--lp-transition);
}

.blog-related-card:hover {
  border-color: var(--lp-lime);
  transform: translateY(-2px);
}

.blog-related-card h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--lp-navy-dark);
  line-height: 1.4;
  margin: 0.5rem 0;
}

@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-article-body {
    font-size: 1rem;
  }

  .blog-cta-box {
    padding: 1.5rem;
  }

  .blog-cta-actions {
    flex-direction: column;
  }

  .blog-related-grid {
    grid-template-columns: 1fr;
  }
}
