@font-face {
  font-family: 'Source Sans Pro';
  src: url('../fonts/SourceSansPro-Regular.ttf');
}

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

html,
body {
  width: 100%;
  font-family: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
}

body {
  background: #ffffff;
  color: #333;
}

/* Navigation */
.navigation {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
}

.logo h3 {
  color: #2563eb;
  font-size: 1.5rem;
  font-weight: 700;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-menu a {
  color: #333;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-menu a:hover {
  color: #2563eb;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 6rem 0 4rem;
  margin-top: 4rem;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.hero-description {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
}

.btn-primary,
.btn-secondary {
  padding: 0.875rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  display: inline-block;
}

.btn-primary {
  background: #ffffff;
  color: #2563eb;
}

.btn-primary:hover {
  background: #f8fafc;
  transform: translateY(-2px);
}

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

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

/* Gift Card Mockup */
.mockup-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.gift-card-mockup {
  perspective: 1000px;
}

.gift-card {
  width: 300px;
  height: 180px;
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transform: rotateY(-15deg);
  animation: float 3s ease-in-out infinite;
}

.gift-card h3 {
  color: #333;
  font-size: 1.2rem;
  font-weight: 600;
}

.gift-card .amount {
  color: #333;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
}

.gift-card .code {
  color: #666;
  font-size: 0.9rem;
  font-family: monospace;
  text-align: right;
}

@keyframes float {
  0%, 100% { transform: rotateY(-15deg) translateY(0px); }
  50% { transform: rotateY(-15deg) translateY(-10px); }
}

/* Section Styling */
section {
  padding: 3rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1f2937;
}

.section-header p {
  font-size: 1.1rem;
  color: #1f2937;
  max-width: 600px;
  margin: 0 auto;
}

/* Features Section */
.features {
  background: #f8fafc;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #1f2937;
}

.feature-card p {
  color: #6b7280;
  line-height: 1.6;
}

/* Demo Section */
.demo {
  background: #f8fafc;
}

.demo-container {
  max-width: 800px;
  margin: 0 auto;
}

.demo-placeholder {
  background: white;
  padding: 4rem 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.demo-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
}

/* Pricing Section */
.pricing {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.pricing-grid {
  display: flex;
  justify-content: center;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: stretch;
}

.pricing-card {
  background: white;
  color: #333;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  max-width: 400px;
  width: 100%;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

/* Plan populaire */
.pricing-card.popular {
  border: 3px solid #ffd700;
  transform: scale(1.05);
}

.pricing-card.popular:hover {
  transform: scale(1.05) translateY(-10px);
}

/* Plan premium */
.pricing-card.premium {
  border: 3px solid #6366f1;
}

/* Badges */
.popular-badge, .premium-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: #ffd700;
  color: #333;
  padding: 0.5rem 1.5rem;
  border-radius: 0 0 12px 12px;
  font-weight: 700;
  font-size: 0.85rem;
  z-index: 10;
}

.premium-badge {
  background: #6366f1;
  color: white;
}

.price-header {
  padding: 2rem;
  text-align: center;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
}

.price-header h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin-bottom: 0.5rem;
  gap: 0.25rem;
}

.currency {
  font-size: 1.5rem;
  font-weight: 600;
}

.amount {
  font-size: 3.5rem;
  font-weight: 700;
}

.period {
  font-size: 1.2rem;
  font-weight: 500;
  color: white;
}

.savings {
  margin-top: 0.5rem;
}

.savings small {
  background: #10b981;
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.price-description {
  opacity: 0.9;
}

.features-list {
  padding: 2rem;
  list-style: none;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.features-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #f3f4f6;
}

.features-list li:last-child {
  border-bottom: none;
  margin-bottom: auto;
}

.purchase-section {
  padding: 2rem;
  background: #f8fafc;
  text-align: center;
}

.lemon-squeezy-container {
  padding: 2rem;
  background: white;
  border-radius: 8px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.lemonsqueezy-button {
  display: inline-block;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
  border: none;
  cursor: pointer;
  min-width: 280px;
}

.lemonsqueezy-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
  background: linear-gradient(135deg, #5a6fd8, #6b4190);
}

.lemonsqueezy-button:active {
  transform: translateY(0);
}

/* Variations des boutons par plan */
.plan-monthly {
  background: linear-gradient(135deg, #06b6d4, #0891b2);
  box-shadow: 0 4px 15px rgba(6, 182, 212, 0.3);
}

.plan-monthly:hover {
  background: linear-gradient(135deg, #0891b2, #0e7490);
  box-shadow: 0 8px 25px rgba(6, 182, 212, 0.4);
}

.plan-annual {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.plan-annual:hover {
  background: linear-gradient(135deg, #d97706, #b45309);
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
}

.plan-lifetime {
  background: linear-gradient(135deg, #667eea, #764ba2);
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.plan-lifetime:hover {
  background: linear-gradient(135deg, #5a6fd8, #6b4190);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

/* Boutons désactivés */
.lemonsqueezy-button.disabled {
  background: #9ca3af !important;
  cursor: not-allowed !important;
  opacity: 0.6;
}

.lemonsqueezy-button.disabled:hover {
  transform: none !important;
  box-shadow: 0 4px 15px rgba(156, 163, 175, 0.3) !important;
  background: #9ca3af !important;
}

.coming-soon {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: #6b7280;
  font-style: italic;
  text-align: center;
}

/* Demo Section */
.demo {
  padding: 3rem 0;
  background: #f8f9fa;
}

.demo-container {
  margin-top: 3rem;
}

/* GIF principal */
.demo-main {
  margin-bottom: 4rem;
}

.demo-gif-wrapper {
  max-width: 900px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  background: white;
  padding: 1rem;
}

.demo-gif {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

.demo-caption {
  text-align: center;
  padding: 1rem;
  color: #666;
  font-size: 0.95rem;
  font-style: italic;
}

/* Galerie d'images */
.demo-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.demo-item {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

.demo-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.demo-image-wrapper {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 1rem;
  cursor: pointer;
  background: #f5f5f5;
}

.demo-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s;
}

.demo-image-wrapper:hover img {
  transform: scale(1.05);
}

.demo-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(37, 99, 235, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.demo-image-wrapper:hover .demo-overlay {
  opacity: 1;
}

.demo-zoom {
  color: white;
  font-size: 2rem;
}

.demo-item h4 {
  color: #2563eb;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.demo-item p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Process flow */
.demo-process {
  background: white;
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.demo-process h3 {
  text-align: center;
  color: #333;
  margin-bottom: 2rem;
  font-size: 1.5rem;
}

.process-steps {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.process-step {
  flex: 1;
  min-width: 200px;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.step-number {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  flex-shrink: 0;
}

.step-content {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.step-content strong {
  color: #333;
  font-size: 1.05rem;
}

.step-content span {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.4;
}

.process-arrow {
  color: #cbd5e1;
  font-size: 1.5rem;
  align-self: center;
  padding: 0 0.5rem;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  z-index: 2000;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.95);
}

.lightbox.active {
  display: block;
}

.lightbox-content {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 80vh;
  animation: zoom 0.4s;
}

@keyframes zoom {
  from {
    transform: scale(0.5);
  }
  to {
    transform: scale(1);
  }
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 40px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s;
  z-index: 2001;
}

.lightbox-close:hover {
  color: #bbb;
}

.lightbox-caption {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  text-align: center;
  color: #ccc;
  padding: 20px 0;
}

/* Responsive Demo */
@media (max-width: 768px) {
  .demo-gallery {
    grid-template-columns: 1fr;
  }
  
  .process-steps {
    flex-direction: column;
  }
  
  .process-arrow {
    transform: rotate(90deg);
    padding: 0.5rem 0;
  }
  
  .demo-gif-wrapper {
    padding: 0.5rem;
  }
  
  .demo-process {
    padding: 1.5rem;
  }
}

/* Requirements Section */
.requirements {
  background: #f8fafc;
}

.req-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.req-item {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.req-item h4 {
  color: #2563eb;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.req-item p {
  color: #6b7280;
}

/* Support Section */
.support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.support-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.support-card h3 {
  color: #1f2937;
  margin-bottom: 1rem;
}

.support-card p {
  color: #6b7280;
}

/* Footer */
footer {
  background: #1f2937;
  color: white;
  padding: 3rem 0 1rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.footer-section h4 {
  margin-bottom: 1rem;
  color: #60a5fa;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: #d1d5db;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section a:hover {
  color: #60a5fa;
}

.footer-bottom {
  border-top: 1px solid #374151;
  margin-top: 2rem;
  padding-top: 1rem;
  text-align: center;
  color: #9ca3af;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .nav-menu {
    gap: 1rem;
  }
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  width: 40px;
  height: 40px;
}

.hamburger-line {
  width: 24px;
  height: 3px;
  background-color: #333;
  transition: all 0.3s ease;
  display: block;
}

/* Hamburger animation when active */
.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

@media screen and (max-width: 768px) {
  .nav-container {
    padding: 1rem;
    position: relative;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 1rem 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 1000;
  }
  
  .nav-menu.mobile-active {
    display: flex;
  }
  
  .nav-menu li {
    margin: 0.5rem 0;
  }
  
  .nav-menu a {
    display: block;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f3f4f6;
    font-size: 1.1rem;
  }
  
  .nav-menu li:last-child a {
    border-bottom: none;
  }
  
  .hero {
    padding: 6rem 0 4rem;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .gift-card {
    width: 250px;
    height: 150px;
    transform: none;
  }
  
  .features-grid,
  .support-grid {
    grid-template-columns: 1fr;
  }
  
  .req-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .pricing-card.popular {
    transform: none;
  }
  
  .pricing-card.popular:hover {
    transform: translateY(-5px);
  }
  
  .amount {
    font-size: 2.5rem;
  }
}

@media screen and (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }
  
  .hero-container {
    padding: 0 1rem;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .req-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/* Roadmap Section */
.roadmap {
  padding: 5rem 0;
  background: #f8fafc;
}

.roadmap-timeline {
  max-width: 800px;
  margin: 3rem auto;
}

.roadmap-item {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: relative;
  border-left: 4px solid #e5e7eb;
}

.roadmap-item h4 {
  color: #1f2937;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.roadmap-item ul {
  color: #6b7280;
  margin-left: 1.5rem;
}

.roadmap-item ul li {
  margin-bottom: 0.5rem;
}

.roadmap-status {
  display: inline-block;
  padding: 0.25rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.roadmap-status.complete {
  background: #d1fae5;
  color: #065f46;
  border: 1px solid #6ee7b7;
}

.roadmap-status.in-progress {
  background: #fef3c7;
  color: #92400e;
  border: 1px solid #fcd34d;
}

.roadmap-status.planned {
  background: #dbeafe;
  color: #1e3a8a;
  border: 1px solid #93c5fd;
}

/* Documentation Pages */
.documentation,
.changelog,
.legal-content {
  padding: 6rem 0 4rem;
  min-height: calc(100vh - 300px);
}

/* Page Hero */
.page-hero {
  background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
  color: white;
  padding: 8rem 0 4rem;
  text-align: center;
}

.page-hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.page-subtitle {
  font-size: 1.2rem;
  opacity: 0.9;
}

/* Roadmap Page */
.roadmap-page {
  padding: 4rem 0;
  background: #f8fafc;
  min-height: calc(100vh - 400px);
}

.roadmap-intro {
  max-width: 800px;
  margin: 0 auto 3rem;
  text-align: center;
  color: #6b7280;
  font-size: 1.1rem;
}

.roadmap-page .roadmap-timeline {
  max-width: 900px;
  margin: 3rem auto;
}

.roadmap-page .roadmap-item {
  background: white;
  border-radius: 12px;
  padding: 2.5rem;
  margin-bottom: 2.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  position: relative;
  border-left: 5px solid #e5e7eb;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.roadmap-page .roadmap-item:hover {
  transform: translateX(5px);
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.12);
}

.roadmap-page .roadmap-item h3 {
  color: #1f2937;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.roadmap-date {
  color: #9ca3af;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  font-weight: 500;
}

.roadmap-page .roadmap-item p {
  color: #6b7280;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.roadmap-page .roadmap-item ul {
  color: #6b7280;
  margin-left: 1.5rem;
  line-height: 1.8;
}

.roadmap-page .roadmap-item ul li {
  margin-bottom: 0.75rem;
}

.roadmap-status.future {
  background: #f3e8ff;
  color: #6b21a8;
  border: 1px solid #c084fc;
}

.roadmap-cta {
  max-width: 600px;
  margin: 4rem auto 0;
  text-align: center;
  background: white;
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.roadmap-cta h3 {
  color: #1f2937;
  margin-bottom: 1rem;
}

.roadmap-cta p {
  color: #6b7280;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.nav-menu a.active {
  color: #3b82f6;
  font-weight: 600;
}

/* Markdown Content Styling */
.markdown-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.markdown-content .md-title {
  color: #1f2937;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  text-align: center;
  padding-bottom: 1rem;
  border-bottom: 3px solid #3b82f6;
}

.markdown-content .md-section {
  color: #1f2937;
  font-size: 1.8rem;
  font-weight: 600;
  margin: 2.5rem 0 1.5rem;
  padding-left: 1rem;
  border-left: 4px solid #3b82f6;
}

.markdown-content .md-subsection {
  color: #374151;
  font-size: 1.4rem;
  font-weight: 600;
  margin: 2rem 0 1rem;
}

.markdown-content p {
  color: #6b7280;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.markdown-content .md-list {
  margin: 1.5rem 0 1.5rem 2rem;
  color: #6b7280;
}

.markdown-content .md-list li {
  margin-bottom: 0.75rem;
  line-height: 1.7;
}

.markdown-content .md-code {
  background: #f3f4f6;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  font-family: 'Monaco', 'Courier New', monospace;
  font-size: 0.9rem;
  color: #dc2626;
}

.markdown-content .md-pre {
  background: #1f2937;
  color: #f9fafb;
  padding: 1.5rem;
  border-radius: 8px;
  overflow-x: auto;
  margin: 1.5rem 0;
}

.markdown-content .md-pre code {
  color: inherit;
  background: none;
  padding: 0;
}

.markdown-content .md-quote {
  border-left: 4px solid #60a5fa;
  padding-left: 1.5rem;
  margin: 1.5rem 0;
  background: #f8fafc;
  padding: 1rem 1.5rem;
  border-radius: 0 8px 8px 0;
}

.markdown-content .status-complete {
  color: #059669;
  font-weight: 600;
}

.markdown-content .status-progress {
  color: #d97706;
  font-weight: 600;
}

.markdown-content .status-planned {
  color: #2563eb;
  font-weight: 600;
}

.markdown-content .status-future {
  color: #7c3aed;
  font-weight: 600;
}

/* Changelog specific styles */
.changelog-page {
  padding: 4rem 0;
  background: #f8fafc;
  min-height: calc(100vh - 400px);
}

.changelog-page .markdown-content h2 {
  background: linear-gradient(135deg, #3b82f6, #1e40af);
  color: white;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  margin: 2rem 0 1rem;
  font-size: 1.3rem;
}

.changelog-page .markdown-content h3 {
  color: #374151;
  font-size: 1.1rem;
  margin: 1.5rem 0 0.5rem;
  font-weight: 600;
}

.changelog-page .markdown-content h3:before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #3b82f6;
  border-radius: 50%;
  margin-right: 0.5rem;
}

/* Version badges */
.markdown-content strong {
  color: #1f2937;
  font-weight: 600;
}

.doc-content,
.changelog-content,
.legal-text {
  max-width: 800px;
  margin: 0 auto;
  padding-top: 2rem;
}

.doc-section,
.legal-section {
  margin-bottom: 3rem;
}

.doc-section h2,
.legal-section h2 {
  color: #1f2937;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #e5e7eb;
}

.doc-section h3 {
  color: #374151;
  font-size: 1.3rem;
  margin: 1.5rem 0 1rem;
}

.doc-section h4 {
  color: #4b5563;
  font-size: 1.1rem;
  margin: 1rem 0 0.5rem;
}

.doc-section p,
.legal-section p {
  color: #6b7280;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.doc-section ul,
.legal-section ul {
  margin-left: 2rem;
  margin-bottom: 1.5rem;
  color: #6b7280;
}

.doc-section ul li,
.legal-section ul li {
  margin-bottom: 0.5rem;
  line-height: 1.8;
}

.doc-section code {
  background: #f3f4f6;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  font-family: 'Courier New', monospace;
  font-size: 0.9rem;
  color: #dc2626;
}

.installation-steps {
  counter-reset: step-counter;
  list-style: none;
  margin-left: 0;
}

.installation-steps li {
  counter-increment: step-counter;
  position: relative;
  padding-left: 3rem;
  margin-bottom: 2rem;
}

.installation-steps li::before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 0;
  background: #667eea;
  color: white;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.requirement-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.requirement-item {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
}

.requirement-item strong {
  color: #2563eb;
  display: block;
  margin-bottom: 0.5rem;
}

.troubleshooting {
  margin-top: 1.5rem;
}

.issue {
  background: #fef3c7;
  border-left: 4px solid #fbbf24;
  padding: 1rem 1.5rem;
  margin-bottom: 1.5rem;
  border-radius: 0 8px 8px 0;
}

.issue h4 {
  color: #92400e;
  margin-bottom: 0.5rem;
}

.issue p {
  color: #78350f;
}

/* Changelog Specific */
.version-entry {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.version-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #e5e7eb;
}

.version-header h2 {
  color: #1f2937;
  font-size: 1.5rem;
  margin: 0;
  border: none;
  padding: 0;
}

.version-date {
  color: #6b7280;
  font-size: 0.9rem;
}

.version-badge {
  background: #e5e7eb;
  color: #4b5563;
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 600;
}

.version-badge.current {
  background: #d1fae5;
  color: #065f46;
}

.version-content h3 {
  color: #374151;
  font-size: 1.1rem;
  margin: 1.5rem 0 0.75rem;
}

.version-content ul {
  margin-left: 1.5rem;
  color: #6b7280;
}

.changelog-footer {
  background: #f3f4f6;
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.changelog-footer h3 {
  color: #1f2937;
  margin-bottom: 1rem;
}

/* Legal Pages Specific */
.legal-content .section-header p {
  color: #6b7280;
  font-style: italic;
}

.legal-section strong {
  color: #1f2937;
}

.legal-section ul {
  list-style-type: disc;
}

/* Price period styling */
.price .period {
  font-size: 1.2rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
}

/* Hero Buy Button - same style as lemonsqueezy-button plan-annual but without script interference */
.hero-buy-button {
  display: inline-block;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
  border: none;
  cursor: pointer;
  min-width: 280px;
}

.hero-buy-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
  background: linear-gradient(135deg, #d97706, #b45309);
  color: white;
  text-decoration: none;
}

.hero-buy-button:active {
  transform: translateY(0);
}
