:root {
  --bg-app: #0d0e10;
  --bg-elevated: rgba(27, 27, 30, 0.7);
  --bg-card: rgba(38, 38, 42, 0.6);
  --accent-primary: #96d999;
  --accent-secondary: #70e769;
  --accent-glow: rgba(150, 217, 153, 0.2);
  --border-divider: rgba(63, 82, 64, 0.4);
  --border-light: rgba(255, 255, 255, 0.1);
  --text-primary: #ffffff;
  --text-secondary: #a1a1aa;
  --text-muted: #71717a;
  --font-family: 'Poppins', sans-serif;
  
  --glass-bg: rgba(13, 14, 16, 0.7);
  --glass-border: rgba(255, 255, 255, 0.05);
}

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

body {
  font-family: var(--font-family);
  background-color: var(--bg-app);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Background Gradients */
.bg-glow {
  position: absolute;
  top: -20vh;
  left: 50%;
  transform: translateX(-50%);
  width: 80vw;
  height: 80vh;
  background: radial-gradient(circle, var(--accent-glow) 0%, rgba(13, 14, 16, 0) 70%);
  z-index: -1;
  pointer-events: none;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Typography */
h1, h2, h3 {
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(3rem, 5vw, 4.5rem); font-weight: 600; }
h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 500; }
h3 { font-size: 1.5rem; font-weight: 600; }

p {
  color: var(--text-secondary);
  font-size: 1.125rem;
  margin-bottom: 32px;
}

/* Layout */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

section {
  padding: 120px 0;
  position: relative;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 500;
  font-size: 1.05rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  gap: 8px;
}

.btn-primary {
  background-color: var(--accent-primary);
  color: #000;
  box-shadow: 0 4px 14px 0 rgba(150, 217, 153, 0.39);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(150, 217, 153, 0.5);
  background-color: var(--accent-secondary);
}

.btn-secondary {
  background-color: var(--glass-bg);
  color: var(--text-primary);
  border: 1px solid var(--border-light);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background-color: rgba(255,255,255,0.05);
  border-color: var(--accent-primary);
  transform: translateY(-2px);
}

.btn-outline {
  color: var(--text-primary);
  border: 1px solid var(--border-divider);
  background: transparent;
}

.btn-outline:hover {
  background: var(--bg-elevated);
  border-color: var(--text-primary);
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--glass-border);
  padding: 20px 0;
  transition: all 0.3s ease;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 32px;
  display: block;
}

.header-right {
  display: flex;
  gap: 24px;
  align-items: center;
}

.lang-text-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-left: 8px;
}

.lang-btn {
  background: none;
  border: none;
  color: inherit;
  cursor: pointer;
  padding: 0;
  font-family: inherit;
  font-size: inherit;
  text-transform: uppercase;
  transition: color 0.2s;
  outline: none;
}

.lang-btn:hover {
  color: var(--text-primary);
}

.lang-btn.active {
  color: var(--text-primary);
  font-weight: 700;
}

.lang-sep {
  opacity: 0.5;
}

.nav-link {
  color: var(--text-secondary);
  font-weight: 500;
  transition: color 0.2s;
}

.nav-link:hover {
  color: var(--text-primary);
}

/* Hero Section */
.hero {
  padding-top: 180px;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 10;
}

.hero-content h1 {
  background: linear-gradient(to right, #ffffff, #a1a1aa);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-badges {
  display: flex;
  gap: 12px;
  margin-bottom: 32px;
}

.badge {
  background: rgba(150, 217, 153, 0.1);
  color: var(--accent-primary);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  border: 1px solid rgba(150, 217, 153, 0.2);
  display: inline-flex;
  align-items: center;
}

.cta-group {
  display: flex;
  gap: 16px;
  align-items: center;
}

.hero-visual {
  position: relative;
}

.hero-visual img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5), 0 0 0 1px var(--border-light);
  transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
  transition: transform 0.5s ease;
}

.hero-visual img:hover {
  transform: perspective(1000px) rotateY(-2deg) rotateX(2deg);
}

.hero-visual::before {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  bottom: -20px;
  left: -20px;
  background: linear-gradient(45deg, var(--accent-primary), transparent);
  border-radius: 32px;
  z-index: -1;
  opacity: 0.1;
  filter: blur(40px);
}

/* Stats/Logos Bar */
.social-proof {
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  background: rgba(255,255,255,0.02);
  padding: 40px 0;
  overflow: hidden;
}

.proof-inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 32px;
}

.proof-item {
  text-align: center;
}

.proof-item h4 {
  font-size: 2rem;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.proof-item p {
  font-size: 0.9rem;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Feature Grid */
.how-it-works {
  text-align: center;
}

.how-it-works h2 {
  max-width: 600px;
  margin: 0 auto 64px auto;
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.how-card {
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-light);
  padding: 40px;
  border-radius: 24px;
  text-align: left;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.how-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--accent-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.how-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.3);
  border-color: rgba(150, 217, 153, 0.4);
}

.how-card:hover::before {
  transform: scaleX(1);
}

.how-icon-wrapper {
  height: 64px;
  width: 64px;
  border-radius: 16px;
  background: rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  border: 1px solid var(--border-light);
  overflow: hidden;
}

.how-icon-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
}

.how-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.how-card p {
  font-size: 1rem;
  margin: 0;
}

/* Pricing Section */
.pricing {
  text-align: center;
  position: relative;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 900px;
  margin: 64px auto 0;
}

.pricing-card {
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  padding: 48px;
  border-radius: 24px;
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  text-align: left;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-4px);
}

.pricing-card.featured {
  border-color: var(--accent-primary);
  box-shadow: 0 0 30px rgba(150, 217, 153, 0.1);
}

.pricing-card.featured .ribbon {
  position: absolute;
  top: 25px;
  right: -50px;
  width: 180px;
  background: var(--accent-primary);
  color: #000;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 6px 0;
  transform: rotate(45deg);
  text-align: center;
  letter-spacing: 1px;
  z-index: 10;
}

.pricing-card h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.price {
  font-size: 3rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 24px;
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.price span {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 400;
}

.promo {
  display: inline-block;
  background: rgba(150, 217, 153, 0.15);
  color: var(--accent-primary);
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 0.85rem;
  margin-bottom: 24px;
  font-weight: 500;
}

.features {
  list-style: none;
  margin-bottom: 40px;
  flex-grow: 1;
}

.features li {
  margin-bottom: 16px;
  color: var(--text-secondary);
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.features li svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--accent-primary);
  margin-top: 2px;
}

.features li.excluded {
  opacity: 0.5;
  color: var(--text-muted);
}

.features li.excluded svg {
  color: var(--text-muted);
}

.pricing-card .btn {
  width: 100%;
}

/* Final CTA */
.final-cta {
  background: radial-gradient(circle at center, rgba(38,38,42,1) 0%, rgba(13,14,16,1) 100%);
  text-align: center;
  padding: 120px 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.final-cta h2 {
  font-size: 3rem;
  margin-bottom: 24px;
}

/* Footer */
footer {
  padding: 64px 0 40px;
  text-align: center;
  background: var(--bg-app);
}

.footer-links {
  margin: 32px 0;
  display: flex;
  justify-content: center;
  gap: 32px;
}

.footer-links a {
  color: var(--text-secondary);
  font-weight: 500;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--accent-primary);
}

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

/* Media Queries */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 48px;
  }
  
  .hero-content h1 {
    margin: 0 auto 24px;
  }
  
  .hero-content p {
    margin: 0 auto 32px;
  }

  .cta-group {
    justify-content: center;
  }

  .hero-visual {
    display: none;
  }
  
  .hero-badges {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .how-grid, .pricing-grid {
    grid-template-columns: 1fr;
  }

  .header-inner {
    padding: 0 16px;
  }
  
  .header-right {
    gap: 12px;
  }
  
  .logo img {
    height: 28px;
  }
  
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.8rem; }
}

@media (max-width: 480px) {
  .nav-signin {
    display: none;
  }
  
  .header-right {
    gap: 8px;
  }
  
  .btn {
    padding: 10px 16px;
    font-size: 0.9rem;
  }

  .lang-text-toggle {
    margin-left: 0;
    font-size: 0.85rem;
  }

  .logo img {
    height: 24px;
  }
}

/* Content Pages */
.content-page {
  padding-top: 160px;
  max-width: 800px;
  margin: 0 auto;
}

.content-page h1 {
  margin-bottom: 16px;
}

.content-date {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 48px;
}

.content-section {
  margin-bottom: 40px;
}

.content-section h2 {
  font-size: 1.5rem;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.content-section p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.disclaimer-box {
  background: rgba(255, 193, 7, 0.05);
  border: 1px solid rgba(255, 193, 7, 0.2);
  padding: 24px;
  border-radius: 16px;
  margin: 40px 0;
}

.disclaimer-box h3 {
  color: #ffc107;
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.disclaimer-box p {
  font-size: 0.95rem;
  margin: 0;
  color: var(--text-secondary);
}

/* Contact Form */
.contact-form-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  padding: 40px;
  border-radius: 24px;
  margin-top: 32px;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--text-primary);
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  color: var(--text-primary);
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-primary);
  background: rgba(255, 255, 255, 0.08);
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

/* Terms Specific Styles */
.tldr-box {
  background: rgba(150, 217, 153, 0.05);
  border: 1px solid rgba(150, 217, 153, 0.2);
  padding: 32px;
  border-radius: 20px;
  margin-bottom: 48px;
}

.tldr-box h3 {
  font-size: 1.1rem;
  color: var(--accent-primary);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.tldr-box p {
  font-size: 1rem;
  margin: 0;
  line-height: 1.6;
}

.urgent-disclaimer {
  background: rgba(255, 255, 255, 0.05);
  border-left: 4px solid var(--accent-primary);
  padding: 24px 32px;
  margin-bottom: 48px;
  color: var(--text-primary);
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1.7;
}

.urgent-disclaimer span {
  color: var(--accent-primary);
  display: block;
  margin-bottom: 8px;
  text-transform: uppercase;
  font-size: 0.9rem;
}
