/* ============================================
   RESET & BASE
   ============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background: #0d0d0d;
  color: #fff;
  line-height: 1.6;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  padding: 100px 20px 80px;
  background: #000;
  text-align: center;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.4rem;
  color: #ccc;
  margin-bottom: 40px;
  line-height: 1.5;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.trust-line {
  color: #999;
  font-size: 0.95rem;
  font-style: italic;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-block;
  padding: 16px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s;
  border: 2px solid transparent;
}

.btn-primary {
  background: #d4af37;
  color: #000;
}

.btn-primary:hover {
  background: #f4c430;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
  background: transparent;
  color: #d4af37;
  border: 2px solid #d4af37;
}

.btn-secondary:hover {
  background: rgba(212, 175, 55, 0.1);
  transform: translateY(-2px);
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
  padding: 80px 20px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #999;
  text-align: center;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   BEFORE/AFTER
   ============================================ */
.before-after-section {
  background: #111;
}

.before-after-container {
  display: flex;
  gap: 30px;
  justify-content: center;
  align-items: flex-start;
  margin-top: 50px;
  flex-wrap: wrap;
}

.image-wrapper {
  position: relative;
  flex: 1;
  min-width: 300px;
  max-width: 500px;
}

.before-after-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  border: 2px solid #333;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.image-label {
  position: absolute;
  top: 15px;
  padding: 8px 16px;
  background: rgba(0, 0, 0, 0.8);
  color: #d4af37;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 6px;
  border: 1px solid #d4af37;
}

.before-label {
  left: 15px;
}

.after-label {
  right: 15px;
}

/* Slider controls for before/after */
.slider-controls-simple {
  margin-top: 30px;
}

.slider-btn-simple {
  background: #151515;
  border: 2px solid #d4af37;
  color: #d4af37;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s;
}

.slider-btn-simple:hover {
  background: rgba(212, 175, 55, 0.2);
  transform: scale(1.1);
}

/* ============================================
   SOFTWARE SHOWCASE
   ============================================ */
.software-section {
  background: #0d0d0d;
}

.software-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.software-image-wrapper {
  position: relative;
}

.software-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  border: 2px solid #333;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

/* ============================================
   FEATURES
   ============================================ */
.features-section {
  background: #0d0d0d;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.feature-card {
  background: #151515;
  padding: 30px;
  border-radius: 8px;
  border: 1px solid #333;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  text-align: left;
}

.feature-card h3 {
  color: #d4af37;
  font-size: 1.3rem;
  margin-bottom: 12px;
}

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

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-it-works-section {
  background: #111;
}

.steps-container {
  display: flex;
  gap: 40px;
  justify-content: center;
  margin-top: 50px;
  flex-wrap: wrap;
}

.step {
  flex: 1;
  min-width: 250px;
  max-width: 300px;
  text-align: center;
}

.step-number {
  width: 60px;
  height: 60px;
  background: #d4af37;
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0 auto 20px;
}

.step h3 {
  color: #d4af37;
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.step p {
  color: #ccc;
  line-height: 1.6;
}

/* ============================================
   STORY
   ============================================ */
.story-section {
  background: #0d0d0d;
}

.story-content {
  max-width: 700px;
  margin: 40px auto 0;
  text-align: left;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #ddd;
}

.story-content p {
  margin-bottom: 20px;
}

.story-content p:last-child {
  margin-bottom: 0;
}

/* ============================================
   PRICING
   ============================================ */
.pricing-section {
  background: #111;
}

.pricing-subtitle {
  font-size: 1.2rem;
  color: #999;
  text-align: center;
  margin-bottom: 40px;
}

.pricing-box {
  max-width: 500px;
  margin: 50px auto 0;
  background: #151515;
  padding: 50px 40px;
  border-radius: 12px;
  border: 1px solid #333;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  text-align: center;
}

.price-amount {
  font-size: 4rem;
  font-weight: 700;
  color: #d4af37;
  margin-bottom: 10px;
}

.price-period {
  font-size: 1.2rem;
  color: #999;
  margin-bottom: 40px;
}

.pricing-features {
  list-style: none;
  text-align: left;
  margin-bottom: 40px;
}

.pricing-features li {
  padding: 12px 0;
  color: #ddd;
  border-bottom: 1px solid #222;
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features li::before {
  content: "✓ ";
  color: #d4af37;
  font-weight: bold;
  margin-right: 10px;
}

.pricing-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* Specifications */
.specs-container {
  margin-top: 60px;
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.specs-card {
  background: #151515;
  padding: 25px;
  border-radius: 8px;
  border: 1px solid #333;
  text-align: left;
}

.specs-card h3 {
  color: #d4af37;
  font-size: 1.2rem;
  margin-bottom: 15px;
  border-bottom: 1px solid #333;
  padding-bottom: 10px;
}

.specs-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.specs-list li {
  color: #ddd;
  padding: 8px 0;
  line-height: 1.6;
  border-bottom: 1px solid #222;
}

.specs-list li:last-child {
  border-bottom: none;
}

.specs-list li strong {
  color: #fff;
}

/* ============================================
   FAQ
   ============================================ */
.faq-section {
  background: #0d0d0d;
}

.faq-list {
  max-width: 700px;
  margin: 50px auto 0;
}

.faq-item {
  background: #151515;
  padding: 25px;
  margin-bottom: 20px;
  border-radius: 8px;
  border: 1px solid #333;
  text-align: left;
}

.faq-item h3 {
  color: #d4af37;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.faq-item p {
  color: #ccc;
  line-height: 1.6;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: #000;
  padding: 40px 20px;
  text-align: center;
  border-top: 1px solid #222;
}

.footer p {
  color: #999;
  margin-bottom: 10px;
}

.footer-links {
  margin-top: 20px;
}

.footer-links a {
  color: #d4af37;
  text-decoration: none;
  margin: 0 15px;
  font-size: 0.9rem;
}

.footer-links a:hover {
  text-decoration: underline;
}

/* ============================================
   COOKIE BANNER
   ============================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1a1a1a;
  border-top: 2px solid #d4af37;
  padding: 20px;
  z-index: 10000;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
  display: none;
}

.cookie-banner.show {
  display: block;
}

.cookie-banner-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-banner-text {
  flex: 1;
  min-width: 250px;
  color: #ddd;
  font-size: 0.95rem;
  line-height: 1.6;
}

.cookie-banner-text a {
  color: #d4af37;
  text-decoration: underline;
}

.cookie-banner-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-banner-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
}

.cookie-banner-btn-accept {
  background: #d4af37;
  color: #000;
}

.cookie-banner-btn-accept:hover {
  background: #f4c430;
}

.cookie-banner-btn-reject {
  background: #333;
  color: #fff;
  border: 1px solid #555;
}

.cookie-banner-btn-reject:hover {
  background: #444;
}

.cookie-banner-btn-settings {
  background: transparent;
  color: #d4af37;
  border: 1px solid #d4af37;
}

.cookie-banner-btn-settings:hover {
  background: #2a2a1a;
}

@media (max-width: 768px) {
  .cookie-banner-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-banner-buttons {
    width: 100%;
    justify-content: center;
  }
  
  .cookie-banner-btn {
    flex: 1;
    min-width: 120px;
  }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
  .hero {
    padding: 80px 20px 60px;
  }
  
  .hero-title {
    font-size: 2.2rem;
    line-height: 1.2;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
    line-height: 1.5;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }
  
  .btn {
    width: 100%;
    text-align: center;
    padding: 14px 20px;
    font-size: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 60px;
    line-height: 1.4;
  }
  
  .btn span {
    margin-top: 4px;
    font-size: 0.75rem;
    opacity: 0.9;
  }
  
  .before-after-container {
    flex-direction: column;
  }
  
  .image-wrapper {
    min-width: 100%;
  }
  
  .software-container {
    grid-template-columns: 1fr;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .feature-card {
    padding: 20px;
  }
  
  .steps-container {
    flex-direction: column;
    gap: 20px;
  }
  
  .step {
    max-width: 100%;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .price-amount {
    font-size: 2.5rem;
  }
  
  .pricing-buttons {
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }
  
  .pricing-buttons .btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 60px;
  }
  
  .specs-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .container {
    padding: 0 15px;
  }
  
  .section {
    padding: 60px 15px;
  }
  
  /* Improve text readability on mobile */
  p {
    font-size: 0.95rem;
    line-height: 1.7;
  }
  
  ul, ol {
    font-size: 0.95rem;
    line-height: 1.7;
  }
  
  /* Better spacing for cards */
  .pricing-option {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 60px 15px 50px;
  }
  
  .hero-title {
    font-size: 1.8rem;
    line-height: 1.2;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .section {
    padding: 40px 15px;
  }
  
  .section-title {
    font-size: 1.6rem;
  }
  
  .reviews-container {
    margin-top: 30px;
  }
  
  .pricing-box {
    padding: 25px 15px;
  }
  
  .btn {
    font-size: 0.95rem;
    padding: 12px 18px;
  }
  
  /* Smaller text on very small screens */
  p {
    font-size: 0.9rem;
  }
  
  h3 {
    font-size: 1.2rem;
  }
  
  /* Better table responsiveness */
  table {
    font-size: 0.85rem;
  }
  
  table th,
  table td {
    padding: 8px;
  }
}

/* ============================================
   LANGUAGE SELECTOR
   ============================================ */
.language-selector {
  position: fixed !important;
  top: 20px !important;
  right: 20px !important;
  z-index: 99999 !important;
  display: flex !important;
  gap: 8px;
  align-items: center;
  background: rgba(0, 0, 0, 0.95) !important;
  padding: 10px 14px !important;
  border-radius: 8px;
  border: 2px solid #d4af37 !important;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.8) !important;
}

.language-selector a {
  padding: 10px 18px;
  background: rgba(212, 175, 55, 0.15);
  border: 2px solid #d4af37;
  border-radius: 6px;
  color: #d4af37;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s;
  white-space: nowrap;
}

.language-selector a:hover {
  background: rgba(212, 175, 55, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.language-selector a.active {
  background: #d4af37;
  color: #000;
  border-color: #d4af37;
  box-shadow: 0 2px 8px rgba(212, 175, 55, 0.5);
}

@media (max-width: 768px) {
  .language-selector {
    top: 10px;
    right: 10px;
    padding: 6px 10px;
  }
  
  .language-selector a {
    padding: 8px 14px;
    font-size: 0.9rem;
  }
}
