/* Entrepedia Dark Theme - Optimized Landing Page */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
  --bg-page: #FAF5F0;
  --bg-card: #FFFFFF;
  --bg-card-hover: #FFF8F3;
  --bg-element: #F5EAE0;
  --bg-subtle: rgba(217, 83, 79, 0.06);
  
  --primary-red: #D9534F;
  --primary-red-hover: #C8433F;
  --accent-check: #D9534F;
  --accent-gold: #D4A359;
  
  --text-white: #2C2321;
  --text-heading: #201816;
  --text-muted: #594E4B;
  --text-subtle: #8A7A76;
  
  --border-subtle: #E8DDD5;
  --border-element: #DCD0C6;
  
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-page);
  color: var(--text-muted);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 70px;
}

/* Page Layout */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 20px 80px;
}

.main-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: start;
}

.left-column {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

/* Clean Section Block - No AI chips, No callout boxes */
.section-block {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.section-heading {
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--text-white);
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.section-heading span {
  color: var(--primary-red);
}

.text-body {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Hero Header Area */
.hero-header {
  margin-bottom: 24px;
}

.hero-title {
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-white);
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 28px;
}

.stats-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.stat-card {
  display: flex;
  align-items: center;
  gap: 12px;
}

.stat-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--border-element);
  background: var(--bg-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-subtle);
  text-transform: uppercase;
  font-weight: 600;
}

.stat-value {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-white);
}

/* Gallery Component */
.main-preview-container {
  width: 100%;
  height: 420px;
  border-radius: var(--radius-md);
  background: var(--bg-page);
  border: 1px solid var(--border-subtle);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.main-preview-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: drop-shadow(0 16px 24px rgba(0, 0, 0, 0.6));
}

.thumbnails-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 14px;
}

.thumb-btn {
  height: 88px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  background: var(--bg-card);
  cursor: pointer;
  padding: 0;
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.thumb-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thumb-btn.active {
  border: 2px solid var(--primary-red);
  box-shadow: 0 0 0 2px rgba(220, 38, 38, 0.3);
}

/* Process Grid */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 8px;
}

.process-card {
  background: var(--bg-page);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.process-num {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-red);
}

.process-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-white);
}

.process-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Bundle Items List */
.bundle-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.bundle-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  border-radius: var(--radius-md);
  background: var(--bg-page);
  border: 1px solid var(--border-subtle);
}

.bundle-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: var(--radius-sm);
  background: var(--primary-red);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.bundle-info h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 4px;
}

.bundle-info p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Bullet Items List */
.bullet-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 4px;
}

.bullet-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.bullet-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary-red);
  margin-top: 10px;
  min-width: 6px;
}

.bullet-item strong {
  color: var(--text-white);
  font-weight: 600;
}

/* Testimonials Grid */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.testimonial-card {
  background: var(--bg-page);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.stars {
  color: var(--accent-gold);
  font-size: 1rem;
}

.testimonial-quote {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.6;
}

.testimonial-author {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-white);
}

/* Guarantee & Urgency */
.guarantee-box {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--bg-page);
  border: 1px solid var(--border-subtle);
  padding: 24px;
  border-radius: var(--radius-md);
}

.guarantee-icon {
  font-size: 2.5rem;
}

.urgency-banner {
  background: #FFF2F0;
  border: 1px solid #F8D7D5;
  padding: 20px;
  border-radius: var(--radius-md);
  text-align: center;
}

.urgency-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary-red);
  margin-bottom: 6px;
}

.urgency-banner p {
  color: #2C2321 !important;
}

/* Primary Red CTA Button */
.cta-btn-red {
  width: 100%;
  padding: 18px 24px;
  background: var(--primary-red);
  color: var(--text-white) !important;
  border: none;
  border-radius: var(--radius-md);
  font-size: 1.15rem;
  font-weight: 800;
  text-align: center;
  text-decoration: none !important;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
}

.cta-btn-red:hover {
  background: var(--primary-red-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(220, 38, 38, 0.55);
}

/* Right Sticky Sidebar Card */
.sidebar-wrapper {
  position: sticky;
  top: 32px;
}

.product-sidebar-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.preview-box {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 24px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.preview-box img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.6));
}

.price-block {
  text-align: center;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  padding: 20px;
  border-radius: var(--radius-md);
  position: relative;
}

.discount-badge {
  display: inline-block;
  background: linear-gradient(135deg, #DC2626 0%, #B91C1C 100%);
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.4);
}

.countdown-timer {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
  font-variant-numeric: tabular-nums;
  font-weight: 800;
  letter-spacing: 0.5px;
  background: linear-gradient(135deg, #DC2626 0%, #B91C1C 100%);
  color: #FFFFFF;
  padding: 3px 8px;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(220, 38, 38, 0.35);
  font-size: 0.9rem;
}

.trust-badges-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.trust-badge-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--text-subtle);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 16px;
}

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

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  padding: 20px;
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.testimonial-user-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--primary-red);
  flex-shrink: 0;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.current-price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-white);
  line-height: 1;
  margin: 4px 0;
}

.info-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 20px;
}

.info-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 14px;
}

.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.check-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.check-icon {
  color: var(--accent-check);
  font-weight: 700;
}

.detail-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 0.85rem;
}

.detail-row:last-child {
  border-bottom: none;
}

/* FAQ Accordion */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--bg-page);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.faq-header {
  width: 100%;
  padding: 16px 20px;
  background: none;
  border: none;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-body {
  padding: 0 20px 16px;
  font-size: 0.95rem;
  color: var(--text-muted);
  display: none;
  line-height: 1.6;
}

.faq-item.open .faq-body {
  display: block;
}

/* Mobile Sticky Bar */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border-subtle);
  padding: 12px 16px;
  z-index: 999;
  justify-content: space-between;
  align-items: center;
}

.mobile-price {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-white);
}

.mobile-cta-btn {
  padding: 12px 20px;
  background: var(--primary-red);
  color: var(--text-white) !important;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none !important;
}

/* Footer */
footer {
  text-align: center;
  padding: 40px 20px;
  color: var(--text-subtle);
  font-size: 0.85rem;
  border-top: 1px solid var(--border-subtle);
  margin-top: 60px;
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
  .main-grid {
    grid-template-columns: 1fr;
  }

  .sidebar-wrapper {
    position: static;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 24px 16px 60px;
  }

  .hero-title {
    font-size: 1.85rem;
  }

  .section-heading {
    font-size: 1.45rem;
  }

  .section-block {
    padding: 20px 16px;
  }

  .main-preview-container {
    height: 260px;
    padding: 0;
    overflow: hidden;
    border-radius: var(--radius-md);
  }

  .main-preview-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .mobile-sticky-bar {
    display: flex;
  }
}
