/* ===== Landing Page Styles ===== */

/* Header */
.lp-header {
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(229,231,235,0.5);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 14px 0;
}

.lp-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.lp-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.lp-nav a:not(.btn) {
  font-size: 0.88rem;
  font-weight: 500;
  color: #6B7280;
  text-decoration: none;
  transition: color 0.2s;
}

.lp-nav a:not(.btn):hover {
  color: #6C63FF;
}

.lp-cta-btn {
  padding: 10px 22px !important;
  font-size: 0.85rem !important;
}

.lp-mobile-menu {
  display: none;
  background: none;
  border: none;
  font-size: 1.3rem;
  color: #374151;
  cursor: pointer;
  padding: 8px;
}

/* Hero */
.lp-hero {
  padding: 140px 0 80px;
  background: linear-gradient(180deg, #F8F9FF 0%, #F0F2F5 100%);
  position: relative;
  overflow: hidden;
}

.lp-hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(108,99,255,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.lp-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.lp-hero-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.lp-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  background: white;
  border: 1px solid #E5E7EB;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 600;
  color: #374151;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.lp-badge i {
  color: #10B981;
  font-size: 0.7rem;
}

.lp-hero h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.15;
  color: #1A1A2E;
  margin-bottom: 18px;
  letter-spacing: -1px;
}

.lp-hero-sub {
  font-size: 1.1rem;
  color: #6B7280;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 520px;
}

.btn-lg {
  padding: 16px 32px !important;
  font-size: 1rem !important;
  border-radius: 12px !important;
}

.lp-hero-features {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.lp-hero-features span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: #6B7280;
  font-weight: 500;
}

.lp-hero-features i {
  color: #6C63FF;
  font-size: 0.8rem;
}

/* Hero Visual */
.lp-hero-visual {
  display: flex;
  justify-content: center;
}

.lp-hero-mockup {
  position: relative;
  width: 380px;
}

.lp-hero-img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12), 0 4px 16px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.06);
}

.lp-hero-float {
  position: absolute;
  background: white;
  padding: 10px 18px;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  font-size: 0.8rem;
  font-weight: 600;
  color: #374151;
  display: flex;
  align-items: center;
  gap: 8px;
  animation: floatBounce 3s ease-in-out infinite;
}

.lp-float-1 {
  top: 20%;
  right: -40px;
}

.lp-float-1 i { color: #10B981; }

.lp-float-2 {
  bottom: 15%;
  left: -30px;
  animation-delay: 1.5s;
}

.lp-float-2 i { color: #6C63FF; }

@keyframes floatBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Trust Strip */
.lp-trust-strip {
  padding: 28px 0;
  background: white;
  border-bottom: 1px solid #F3F4F6;
}

.lp-trust-items {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.lp-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #374151;
}

.lp-trust-item i {
  color: #6C63FF;
  font-size: 1rem;
}

/* Section Headers */
.lp-section-header {
  text-align: center;
  margin-bottom: 48px;
}

.lp-section-tag {
  display: inline-block;
  background: rgba(108,99,255,0.1);
  color: #6C63FF;
  padding: 5px 16px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}

.lp-section-header h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: #1A1A2E;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.lp-section-header p {
  font-size: 1.05rem;
  color: #6B7280;
  max-width: 600px;
  margin: 0 auto;
}

/* Features */
.lp-features {
  padding: 80px 0;
  background: #F8F9FF;
}

.lp-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.lp-feature-card {
  background: white;
  border-radius: 16px;
  padding: 32px 28px;
  border: 1px solid #E5E7EB;
  transition: all 0.3s;
}

.lp-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  border-color: rgba(108,99,255,0.2);
}

.lp-feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(108,99,255,0.1), rgba(124,58,237,0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #6C63FF;
  margin-bottom: 18px;
}

.lp-feature-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #1A1A2E;
  margin-bottom: 8px;
}

.lp-feature-card p {
  font-size: 0.9rem;
  color: #6B7280;
  line-height: 1.6;
}

/* How It Works */
.lp-how {
  padding: 80px 0;
  background: white;
}

.lp-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.lp-step-card {
  background: #F8F9FF;
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
  flex: 1;
  max-width: 300px;
  border: 1px solid #E5E7EB;
  transition: all 0.3s;
}

.lp-step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}

.lp-step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6C63FF, #7C3AED);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 800;
  margin: 0 auto 18px;
  box-shadow: 0 4px 14px rgba(108,99,255,0.3);
}

.lp-step-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #1A1A2E;
  margin-bottom: 8px;
}

.lp-step-card p {
  font-size: 0.88rem;
  color: #6B7280;
  line-height: 1.6;
}

.lp-step-arrow {
  color: #D1D5DB;
  font-size: 1.2rem;
}

/* Templates */
.lp-templates {
  padding: 80px 0;
  background: #F8F9FF;
}

.lp-templates-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.lp-template-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #E5E7EB;
  transition: all 0.3s;
  text-align: center;
  padding-bottom: 24px;
}

.lp-template-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.1);
}

.lp-template-img {
  position: relative;
  height: 320px;
  overflow: hidden;
  background: #F9FAFB;
}

.lp-template-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.4s;
}

.lp-template-card:hover .lp-template-img img {
  transform: scale(1.03);
}

.lp-template-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: linear-gradient(135deg, #6C63FF, #7C3AED);
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.68rem;
  font-weight: 700;
}

.lp-template-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #1A1A2E;
  margin: 18px 0 6px;
}

.lp-template-card p {
  font-size: 0.85rem;
  color: #6B7280;
  padding: 0 20px;
  margin-bottom: 16px;
}

.btn-sm {
  padding: 8px 20px !important;
  font-size: 0.82rem !important;
}

/* FAQ */
.lp-faq {
  padding: 80px 0;
  background: white;
}

/* Contact */
.lp-contact {
  padding: 80px 0;
  background: #F8F9FF;
}

.lp-contact-form {
  max-width: 600px;
  margin: 0 auto;
}

.lp-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}

.lp-contact-form .form-group input,
.lp-contact-form .form-group textarea {
  padding: 14px 18px;
  border: 2px solid #E5E7EB;
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: #1A1A2E;
  background: white;
  width: 100%;
  outline: none;
  transition: border-color 0.2s;
}

.lp-contact-form .form-group input:focus,
.lp-contact-form .form-group textarea:focus {
  border-color: #6C63FF;
  box-shadow: 0 0 0 4px rgba(108,99,255,0.1);
}

.lp-contact-form .form-group label {
  font-size: 0.78rem;
  font-weight: 600;
  color: #6B7280;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
  display: block;
}

.lp-contact-form .btn {
  width: 100%;
  justify-content: center;
}

/* CTA Section */
.lp-cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #6C63FF 0%, #7C3AED 50%, #4338CA 100%);
  text-align: center;
  color: white;
}

.lp-cta-section h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.lp-cta-section p {
  font-size: 1.05rem;
  opacity: 0.85;
  margin-bottom: 28px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.lp-cta-section .btn-primary {
  background: white !important;
  color: #6C63FF !important;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15) !important;
}

.lp-cta-section .btn-primary:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 8px 30px rgba(0,0,0,0.2) !important;
}

/* Footer */
.lp-footer {
  padding: 48px 0 0;
  background: #1A1A2E;
  color: #94A3B8;
}

.lp-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.lp-footer-brand .logo {
  margin-bottom: 12px;
}

.lp-footer-brand .logo span {
  background: linear-gradient(135deg, #6C63FF, #00D2FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lp-footer-brand p {
  font-size: 0.85rem;
  line-height: 1.6;
  color: #64748B;
}

.lp-footer-links h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: white;
  margin-bottom: 16px;
}

.lp-footer-links a {
  display: block;
  font-size: 0.85rem;
  color: #64748B;
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.2s;
}

.lp-footer-links a:hover {
  color: #6C63FF;
}

.lp-footer-bottom {
  padding: 20px 0;
  text-align: center;
  font-size: 0.78rem;
  color: #475569;
}

/* Mobile Nav */
.lp-mobile-nav {
  position: fixed;
  inset: 0;
  background: white;
  z-index: 200;
  padding: 80px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.lp-mobile-nav.open {
  transform: translateX(0);
}

.lp-mobile-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 1.4rem;
  color: #374151;
  cursor: pointer;
}

.lp-mobile-link {
  padding: 14px 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: #1A1A2E;
  text-decoration: none;
  border-bottom: 1px solid #F3F4F6;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .lp-hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .lp-hero h1 { font-size: 2.4rem; }
  .lp-hero-sub { max-width: 100%; margin-left: auto; margin-right: auto; }
  .lp-hero-features { justify-content: center; }
  .lp-hero-mockup { width: 300px; }

  .lp-features-grid { grid-template-columns: repeat(2, 1fr); }
  .lp-templates-grid { grid-template-columns: repeat(2, 1fr); }

  .lp-steps { flex-direction: column; }
  .lp-step-arrow { transform: rotate(90deg); }
  .lp-step-card { max-width: 100%; }

  .lp-footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}

@media (max-width: 768px) {
  .lp-nav { display: none; }
  .lp-mobile-menu { display: block; }

  .lp-hero { padding: 120px 0 60px; }
  .lp-hero h1 { font-size: 2rem; }

  .lp-features-grid { grid-template-columns: 1fr; }
  .lp-templates-grid { grid-template-columns: 1fr; }
  .lp-template-img { height: 240px; }

  .lp-section-header h2 { font-size: 1.6rem; }

  .lp-contact-grid { grid-template-columns: 1fr; }

  .lp-cta-section h2 { font-size: 1.6rem; }

  .lp-footer-grid { grid-template-columns: 1fr; gap: 24px; }

  .lp-hero-float { display: none; }
}

@media (max-width: 480px) {
  .lp-hero h1 { font-size: 1.7rem; }
  .lp-hero-sub { font-size: 0.95rem; }
  .lp-hero-mockup { width: 240px; }
  .btn-lg { padding: 14px 24px !important; font-size: 0.9rem !important; }
}
