:root {
  --bg: #0f0f0f;
  --panel: #161616;
  --elev: #1b1b1b;
  --text: #eaeaea;
  --muted: #a8a8a8;
  --primary: #4CAF50;
  --primary-600: #45a049;
  --border: #222;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 80%, rgba(76, 175, 80, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(76, 175, 80, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(76, 175, 80, 0.02) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
}
.container { max-width: 1100px; margin: 0 auto; padding: 0 16px; }
.nav { 
  position: sticky; 
  top: 0; 
  z-index: 100; 
  background: rgba(15,15,15,0.95); 
  backdrop-filter: blur(10px); 
  border-bottom: 1px solid var(--border); 
}
.nav-inner { 
  display: flex; 
  align-items: center; 
  justify-content: space-between; 
  padding: 12px 0; 
}

.brand { 
  font-weight: 800; 
  letter-spacing: 0.5px; 
  font-size: 18px;
}

.links { 
  display: flex; 
  align-items: center; 
  gap: 0;
}

.links a { 
  color: var(--text); 
  text-decoration: none; 
  padding: 8px 12px; 
  font-size: 14px; 
  border-radius: 6px;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  height: 36px;
}

.links a:hover {
  background: var(--elev);
  color: var(--primary);
}

.links a.btn {
  height: auto;
  padding: 8px 16px;
  margin-left: 8px;
}

.nav-toggle { 
  display: none; 
  background: none; 
  border: 0; 
  color: var(--text); 
  font-size: 20px; 
  cursor: pointer;
  padding: 8px;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.nav-toggle:hover {
  background: var(--elev);
  color: var(--primary);
}

.hero { 
  padding: 80px 0; 
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to top, var(--bg), transparent);
  pointer-events: none;
}
.hero-inner { display: grid; grid-template-columns: 1.2fr 1fr; gap: 28px; align-items: center; }
.hero-copy h1 { 
  margin: 0 0 16px; 
  font-size: 42px; 
  line-height: 1.2;
  background: linear-gradient(135deg, var(--text) 0%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-copy p { 
  margin: 0 0 24px; 
  color: var(--muted); 
  font-size: 18px;
  line-height: 1.6;
}
.hero-cta { display: flex; gap: 12px; margin: 16px 0; }
.trust { color: var(--muted); font-size: 13px; }
.hero-art .card { padding: 18px; }
.bg-elevated { background: var(--elev); border: 1px solid var(--border); border-radius: 12px; }
.preview-lines { display: grid; gap: 10px; }
.preview-lines .line { height: 10px; background: #2a2a2a; border-radius: 6px; }
.preview-lines .line.w70 { width: 70%; }
.preview-lines .line.w50 { width: 50%; }

.btn { 
  display: inline-block; 
  padding: 12px 18px; 
  border-radius: 10px; 
  text-decoration: none; 
  font-weight: 600; 
  border: 1px solid transparent; 
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary { 
  background: linear-gradient(135deg, var(--primary) 0%, #66bb6a 100%); 
  color: white; 
  box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.btn-primary:hover { 
  background: linear-gradient(135deg, #45a049 0%, var(--primary) 100%); 
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
}

.btn-secondary { 
  background: transparent; 
  color: var(--text); 
  border-color: var(--border);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover { 
  background: var(--elev);
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.btn-lg { 
  padding: 16px 24px; 
  font-size: 18px; 
  border-radius: 12px;
}

.section { 
  padding: 80px 0; 
  position: relative;
}

.section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), #66bb6a);
  border-radius: 2px;
  opacity: 0.6;
}
.section-title { margin: 0 0 20px; font-size: 28px; }
.grid-3 { 
  display: grid; 
  grid-template-columns: repeat(3, 1fr); 
  gap: 24px; 
  margin-top: 2rem;
}

.grid-3 .card {
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.card { 
  background: var(--panel); 
  border: 1px solid var(--border); 
  border-radius: 12px; 
  padding: 20px; 
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), #66bb6a);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card:hover::before {
  opacity: 1;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border-color: var(--primary);
}
.feature h3 { margin-top: 0; }

.steps { display: grid; gap: 12px; }
.step { display: grid; grid-template-columns: 40px 1fr; gap: 12px; align-items: start; }
.step-num { width: 40px; height: 40px; border-radius: 10px; background: var(--elev); border: 1px solid var(--border); display: grid; place-items: center; font-weight: 700; }

.pricing .price { text-align: left; }
.pricing .price .price-head { color: var(--muted); font-size: 13px; }
.pricing .price .price-tag { 
  font-size: 28px; 
  margin: 6px 0 8px; 
  font-weight: 700;
  transition: all 0.3s ease;
}

.pricing .featured .price-tag {
  font-size: 32px;
  color: var(--primary);
  text-shadow: 0 0 20px rgba(76, 175, 80, 0.3);
  animation: glow 3s ease-in-out infinite;
}

@keyframes glow {
  0%, 100% { text-shadow: 0 0 20px rgba(76, 175, 80, 0.3); }
  50% { text-shadow: 0 0 30px rgba(76, 175, 80, 0.6); }
}
.pricing .featured { 
  border-color: var(--primary); 
  box-shadow: 0 0 0 2px var(--primary) inset, 0 8px 32px rgba(76, 175, 80, 0.15); 
  position: relative; 
  transform: scale(1.05);
  background: linear-gradient(135deg, var(--panel) 0%, var(--elev) 100%);
  overflow: hidden;
}

.pricing .featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(76, 175, 80, 0.1), transparent);
  transition: left 0.6s ease;
}

.pricing .featured:hover::before {
  left: 100%;
}

.pricing .featured:hover {
  transform: scale(1.05) translateY(-8px);
  box-shadow: 0 0 0 2px var(--primary) inset, 0 16px 48px rgba(76, 175, 80, 0.25);
}

.pricing .featured:hover::after {
  animation-duration: 1.5s;
}

.pricing .featured::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), #66bb6a, var(--primary));
  background-size: 200% 100%;
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.pricing .featured .badge {
  background: linear-gradient(135deg, var(--primary) 0%, #66bb6a 100%);
  box-shadow: 0 4px 15px rgba(76, 175, 80, 0.4);
  animation: pulse 2s ease-in-out infinite;
  position: relative;
  overflow: hidden;
}

.pricing .featured .badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.pricing .featured:hover .badge::before {
  left: 100%;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}
.badge { 
  display: inline-block; 
  font-size: 12px; 
  color: #fff; 
  background: linear-gradient(135deg, var(--primary) 0%, #66bb6a 100%); 
  padding: 6px 12px; 
  border-radius: 999px; 
  margin-bottom: 12px; 
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(76, 175, 80, 0.3);
  transition: all 0.3s ease;
}

.badge:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(76, 175, 80, 0.4);
}
.struck { text-decoration: line-through; color: var(--muted); margin-right: 6px; }
.center { text-align: center; margin-top: 16px; }

.faq details { background: var(--panel); border: 1px solid var(--border); border-radius: 8px; padding: 10px 12px; margin-bottom: 10px; }
.faq summary { cursor: pointer; font-weight: 600; }
.faq p { color: var(--muted); }

.footer { border-top: 1px solid var(--border); padding: 18px 0; background: rgba(15,15,15,0.6); }
.footer-inner { display: flex; align-items: center; justify-content: space-between; }
.footer .links a { color: var(--text); text-decoration: none; margin-left: 12px; font-size: 14px; }
.copy { color: var(--muted); font-size: 13px; }

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  
  .nav-inner {
    position: relative;
  }
  
  .links { 
    display: flex; 
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--panel);
    border: 1px solid var(--border);
    border-top: none;
    border-radius: 0 0 12px 12px;
    flex-direction: column;
    padding: 1rem 0;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
  }
  
  .links.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  
  .links a {
    margin: 0;
    padding: 12px 1rem;
    border-radius: 0;
    height: auto;
    justify-content: flex-start;
    border-bottom: 1px solid var(--border);
  }
  
  .links a:last-child {
    border-bottom: none;
  }
  
  .links a.btn {
    margin: 8px 1rem;
    justify-content: center;
    border: 1px solid var(--primary);
  }
  
  .nav-toggle { 
    display: block; 
  }
}

/* Reviews Section */
.reviews-container {
  overflow: hidden;
  position: relative;
  margin: 2rem 0;
}

.reviews-scroll {
  display: flex;
  gap: 2rem;
  animation: scroll-reviews 30s linear infinite;
  width: max-content;
}

.reviews-scroll:hover {
  animation-play-state: paused;
}

@keyframes scroll-reviews {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.review-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  min-width: 300px;
  max-width: 350px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.review-card .stars {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #ffd700;
}

.review-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  color: var(--text);
  font-style: italic;
}

.review-card .reviewer {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* Responsive adjustments for reviews */
@media (max-width: 768px) {
  .reviews-scroll {
    animation-duration: 20s;
  }
  
  .review-card {
    min-width: 280px;
    padding: 1.25rem;
  }
}

/* Community Section */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 2rem 0;
}

.community-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  text-align: center;
}

.card.community {
  text-align: center;
  padding: 2rem;
}

.card.community h3 {
  margin-bottom: 1rem;
  color: var(--primary);
}

.card.community ul {
  text-align: left;
  margin-top: 1rem;
}

.card.community li {
  margin-bottom: 0.5rem;
  color: var(--text);
}

/* Results Section */
.before-after {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin: 3rem 0;
  flex-wrap: wrap;
}

.comparison-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  min-width: 280px;
  max-width: 320px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.comparison-header {
  text-align: center;
  margin-bottom: 1.5rem;
  padding: 0.75rem;
  border-radius: 8px;
}

.comparison-header.before {
  background: #fee2e2;
  color: #dc2626;
}

.comparison-header.after {
  background: #dcfce7;
  color: #16a34a;
}

.comparison-header h3 {
  margin: 0;
  font-size: 1.1rem;
}

.time-badge {
  background: var(--primary);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  text-align: center;
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.comparison-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.comparison-content li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  font-size: 0.9rem;
}

.comparison-content li:last-child {
  border-bottom: none;
}

.vs-badge {
  background: linear-gradient(135deg, var(--primary) 0%, #66bb6a 100%);
  color: white;
  padding: 1.5rem 2rem;
  border-radius: 50%;
  font-weight: 800;
  font-size: 1.4rem;
  min-width: 80px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(76, 175, 80, 0.4);
  position: relative;
  transition: all 0.3s ease;
  border: 3px solid rgba(255, 255, 255, 0.1);
}

.vs-badge:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 35px rgba(76, 175, 80, 0.6);
  border-color: rgba(255, 255, 255, 0.2);
}

.vs-badge::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, var(--primary), #66bb6a, var(--primary));
  border-radius: 50%;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.vs-badge:hover::before {
  opacity: 1;
}

.results-note {
  font-size: 1.1rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-top: 2rem;
}

/* Privacy Page Styles */
.privacy-content {
  max-width: 800px;
  margin: 0 auto;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 3rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.privacy-title {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  text-align: center;
  color: var(--primary);
  border-bottom: 3px solid var(--primary);
  padding-bottom: 1rem;
}

.privacy-section {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: var(--elev);
  border-radius: 12px;
  border-left: 4px solid var(--primary);
  transition: all 0.3s ease;
}

.privacy-section:hover {
  transform: translateX(8px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.privacy-section h2 {
  color: var(--primary);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.privacy-section p, .privacy-section li {
  line-height: 1.6;
  color: var(--text);
}

.privacy-section ul {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

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

.privacy-actions {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .grid-2 {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .before-after {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .vs-badge {
    order: -1;
  }
  
  .comparison-card {
    min-width: 100%;
    max-width: 100%;
  }
  
  .privacy-content {
    padding: 2rem 1.5rem;
    margin: 0 1rem;
  }
  
  .privacy-title {
    font-size: 2rem;
  }
}


