﻿:root {
  --bg-dark: #0B0F19;
  --bg-card: #151D30;
  --primary: #D97706;
  --secondary: #10B981;
  --text-main: #F3F4F6;
  --text-muted: #9CA3AF;
  --border: #1F2937;
}

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

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: 'Montserrat', sans-serif;
  overflow-x: hidden;
  position: relative;
  line-height: 1.6;
}

body::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(217, 119, 6, 0.05) 0%, rgba(13,17,26,0) 70%);
  top: -100px;
  right: -200px;
  z-index: -1;
  pointer-events: none;
}

body::after {
  content: '';
  position: absolute;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.03) 0%, rgba(13,17,26,0) 70%);
  bottom: 20%;
  left: -300px;
  z-index: -1;
  pointer-events: none;
}

h1, h2, h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 500;
  color: #FFFFFF;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--primary);
  color: var(--bg-dark);
  padding: 1rem;
  z-index: 1000;
  transition: top 0.2s;
  text-decoration: none;
  font-weight: bold;
}

.skip-link:focus {
  top: 0;
}

header {
  border-bottom: 1px solid var(--border);
  background: rgba(11, 15, 25, 0.85);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 100;
}

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

.logo-area {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-area img {
  width: 40px;
  height: 40px;
}

.logo-text {
  font-family: 'Syne', sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: #FFFFFF;
  letter-spacing: 1px;
}

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

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s;
  font-size: 0.95rem;
  font-weight: 600;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--primary);
}

.burger-menu {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
  color: #FFFFFF;
  font-size: 1.8rem;
}

main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

/* Hero Section */
.hero-sec {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 4rem 0;
}

.hero-content h1 {
  font-size: 3.2rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-content p {
  color: var(--text-muted);
  font-size: 1.15rem;
  margin-bottom: 2rem;
}

.btn-group {
  display: flex;
  gap: 1rem;
}

.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: transform 0.2s, background-color 0.3s;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--bg-dark);
}

.btn-primary:hover {
  background-color: #F59E0B;
}

.btn-secondary {
  background-color: transparent;
  color: var(--text-main);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  border-color: var(--primary);
}

.hero-img img {
  width: 100%;
  border-radius: 8px;
  border: 1px solid var(--border);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* Stats */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 5rem 0;
  text-align: center;
}

.stat-card {
  background: var(--bg-card);
  padding: 2rem;
  border-radius: 6px;
  border: 1px solid var(--border);
}

.stat-number {
  font-family: 'Syne', sans-serif;
  font-size: 2.8rem;
  color: var(--secondary);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--text-muted);
}

/* Social Proof */
.social-proof {
  margin: 6rem 0;
  text-align: center;
}

.social-proof h2 {
  font-size: 2rem;
  margin-bottom: 3rem;
}

.brand-logos {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
  opacity: 0.6;
}

.brand-logos i {
  font-size: 2.5rem;
  color: var(--text-muted);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.review-card {
  background: var(--bg-card);
  padding: 2.5rem;
  border-radius: 6px;
  border: 1px solid var(--border);
  text-align: left;
}

.review-stars {
  color: var(--primary);
  margin-bottom: 1rem;
}

.review-card p {
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.review-author {
  font-weight: bold;
}

/* Asymmetric Features Section */
.features-sec {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
  margin: 7rem 0;
}

.features-img img {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--border);
}

.features-content ul {
  list-style: none;
  margin-top: 1.5rem;
}

.features-content li {
  margin-bottom: 1.2rem;
  position: relative;
  padding-left: 2rem;
  color: var(--text-muted);
}

.features-content li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--secondary);
  font-weight: bold;
  font-size: 1.2rem;
}

/* Pricing Section */
.pricing-sec {
  margin: 7rem 0;
  text-align: center;
}

.pricing-sec h2 {
  font-size: 2.2rem;
  margin-bottom: 3rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  align-items: stretch;
}

.price-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 3rem 2rem;
  position: relative;
  transition: transform 0.3s;
}

.price-card.featured {
  border-color: var(--primary);
  box-shadow: 0 10px 25px rgba(217, 119, 6, 0.1);
  transform: scale(1.03);
}

.badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--primary);
  color: var(--bg-dark);
  font-size: 0.75rem;
  font-weight: bold;
  padding: 0.25rem 1rem;
  border-radius: 20px;
  text-transform: uppercase;
}

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

.price-amount {
  font-family: 'Syne', sans-serif;
  font-size: 3rem;
  color: #FFFFFF;
  font-weight: 500;
  margin-bottom: 2rem;
}

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

.price-features {
  list-style: none;
  margin-bottom: 2.5rem;
  text-align: left;
}

.price-features li {
  margin-bottom: 0.8rem;
  color: var(--text-muted);
}

.price-features i {
  color: var(--secondary);
  margin-right: 8px;
}

/* Lead Capture Form */
.form-sec {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 4rem 3rem;
  margin: 7rem 0;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.form-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.form-header p {
  color: var(--text-muted);
}

.lead-form-element {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.input-group {
  display: flex;
  flex-direction: column;
}

.input-group label {
  font-size: 0.85rem;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.input-group input, .input-group textarea {
  background: var(--bg-dark);
  border: 1px solid var(--border);
  padding: 1rem;
  color: #FFFFFF;
  font-family: inherit;
  font-size: 1rem;
  border-radius: 4px;
}

.input-group input:focus, .input-group textarea:focus {
  border-color: var(--primary);
  outline: none;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.checkbox-group input {
  margin-top: 4px;
}

.checkbox-group label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.checkbox-group a {
  color: var(--primary);
  text-decoration: none;
}

/* Accordion FAQ */
.faq-sec {
  margin: 6rem auto;
  max-width: 800px;
}

.faq-sec h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 3rem;
}

details {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 1.2rem;
  margin-bottom: 1rem;
  border-radius: 6px;
  cursor: pointer;
}

summary {
  font-weight: 600;
  font-size: 1.1rem;
}

details p {
  margin-top: 1rem;
  color: var(--text-muted);
}

/* Trust Layer */
.trust-layer {
  background: #0E1626;
  border: 1px solid var(--border);
  padding: 2.5rem;
  border-radius: 8px;
  margin: 5rem 0;
}

.trust-layer h4 {
  color: #FFFFFF;
  margin-bottom: 1rem;
}

.trust-layer p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Footer */
footer {
  border-top: 1px solid var(--border);
  background-color: #060911;
  padding: 4rem 2rem;
  font-size: 0.85rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-col h5 {
  color: #FFFFFF;
  margin-bottom: 1.2rem;
  font-size: 1rem;
}

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

.footer-col ul li {
  margin-bottom: 0.8rem;
}

.footer-col a {
  color: var(--text-muted);
  text-decoration: none;
}

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

.footer-bottom {
  max-width: 1200px;
  margin: 3rem auto 0 auto;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  text-align: center;
}

/* Cookie Banner */
.cookie-banner {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 1.5rem;
  border-radius: 8px;
  max-width: 400px;
  z-index: 1000;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.cookie-banner p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.cookie-banner a {
  color: var(--primary);
}

/* Mobile Responsiveness */
@media (max-width: 968px) {
  .hero-sec, .features-sec, .pricing-grid, .form-grid, .reviews-grid, .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .hero-content h1 {
    font-size: 2.3rem;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .burger-menu {
    display: block;
  }
  
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--bg-card);
    padding: 2rem;
    border-bottom: 1px solid var(--border);
  }
  
  .nav-links.nav-active {
    display: flex;
  }
}