/* Core Reset & Variables */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600&family=Syne:wght@400;500;600&display=swap');

:root {
  --bg-primary: #0F172A;
  --bg-secondary: #022C22;
  --accent: #A3E635;
  --accent-hover: #D9F99D;
  --text-light: #F8FAFC;
  --text-muted: #94A3B8;
  --card-bg: rgba(15, 23, 42, 0.8);
  --border-color: rgba(163, 230, 53, 0.2);
  --font-heading: 'Syne', sans-serif;
  --font-body: 'Montserrat', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-primary);
  color: var(--text-light);
}

body {
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Accessibility */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--accent);
  color: var(--bg-primary);
  padding: 10px 20px;
  z-index: 9999;
  font-weight: bold;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 0;
}

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 500;
  letter-spacing: -0.02em;
}

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

/* Base Header Design */
header {
  position: sticky;
  top: 0;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(12px);
  z-index: 1000;
  border-bottom: 1px solid var(--border-color);
}

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

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-light);
}

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

.nav-menu {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.3s ease;
  padding: 0.5rem 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--accent);
}

.cta-nav {
  background: var(--accent);
  color: var(--bg-primary);
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.cta-nav:hover {
  background: var(--accent-hover);
}

.burger-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 2rem;
  cursor: pointer;
}

/* Unique Graphic Background Wave Effect */
.soundwave-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.05;
  background-image: repeating-linear-gradient(90deg, var(--accent) 0px, var(--accent) 2px, transparent 2px, transparent 40px);
  z-index: 0;
  pointer-events: none;
}

/* Sections Base Styling */
section {
  position: relative;
  padding: 5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Hero Section */
.hero-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.hero-text h1 {
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--text-light);
}

.hero-text h1 span {
  color: var(--accent);
}

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

.hero-cta-group {
  display: flex;
  gap: 1.5rem;
}

.btn-primary {
  background: var(--accent);
  color: var(--bg-primary);
  padding: 1rem 2rem;
  border-radius: 4px;
  font-weight: 600;
  transition: transform 0.2s ease, background-color 0.2s ease;
  display: inline-block;
}

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

.btn-secondary {
  border: 1px solid var(--accent);
  color: var(--accent);
  padding: 1rem 2rem;
  border-radius: 4px;
  font-weight: 600;
  transition: background-color 0.2s ease;
}

.btn-secondary:hover {
  background: rgba(163, 230, 53, 0.1);
}

.hero-image-wrapper {
  position: relative;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
}

.hero-image-wrapper img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

/* Statistics Block */
.stats-section {
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  background: rgba(2, 44, 34, 0.3);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item h3 {
  font-size: 3rem;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.stat-item p {
  color: var(--text-muted);
  font-size: 0.9rem;
  text-transform: uppercase;
}

/* Trust / Social Proof Section */
.social-proof {
  background: rgba(15, 23, 42, 0.5);
  text-align: center;
}

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

.brand-logos i {
  font-size: 2.5rem;
  color: var(--text-light);
  transition: opacity 0.3s;
}

.brand-logos i:hover {
  opacity: 1;
}

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

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

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

.testimonial-author {
  font-weight: 600;
  color: var(--accent);
}

.testimonial-role {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Features Asymmetric Section */
.features-asymmetric {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
  align-items: center;
}

.features-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  border: 1px solid var(--border-color);
}

.features-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.features-list {
  list-style: none;
}

.features-list li {
  margin-bottom: 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.features-list i {
  color: var(--accent);
  margin-top: 0.25rem;
}

.features-list p {
  color: var(--text-muted);
}

/* Services Overview */
.services-overview {
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 4rem auto;
}

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

.service-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.service-body {
  padding: 2rem;
}

.service-body h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--text-light);
}

.service-body p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.service-link {
  color: var(--accent);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

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

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

.pricing-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 3rem 2rem;
  position: relative;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.pricing-card.premium-tier {
  border-color: var(--accent);
  box-shadow: 0 10px 30px rgba(163, 230, 53, 0.15);
  background: linear-gradient(180deg, rgba(2, 44, 34, 0.6) 0%, rgba(15, 23, 42, 0.9) 100%);
}

.popular-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--bg-primary);
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

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

.price {
  font-size: 3rem;
  font-family: var(--font-heading);
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

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

.pricing-features {
  list-style: none;
  margin: 2rem 0;
  text-align: left;
  flex-grow: 1;
}

.pricing-features li {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-muted);
}

.pricing-features i {
  color: var(--accent);
}

.btn-pricing-action {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
  padding: 0.8rem 1.5rem;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  width: 100%;
}

.pricing-card.premium-tier .btn-pricing-action {
  background: var(--accent);
  color: var(--bg-primary);
}

.btn-pricing-action:hover {
  background: var(--accent);
  color: var(--bg-primary);
}

/* Lead Capture Form Section */
.form-section {
  background: rgba(2, 44, 34, 0.2);
  border-radius: 12px;
  border: 1px solid var(--border-color);
  padding: 4rem;
  margin-top: 5rem;
  margin-bottom: 5rem;
}

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

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

.form-info p {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.form-info-items {
  list-style: none;
}

.form-info-items li {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.form-info-items i {
  color: var(--accent);
}

.actual-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

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

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

.form-group input, .form-group textarea {
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  padding: 0.9rem;
  border-radius: 4px;
  color: var(--text-light);
  font-family: var(--font-body);
  transition: border-color 0.2s;
}

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

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.checkbox-group input {
  margin-top: 0.25rem;
  accent-color: var(--accent);
}

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

.checkbox-group a {
  color: var(--accent);
}

.submit-btn {
  background: var(--accent);
  color: var(--bg-primary);
  border: none;
  padding: 1.1rem;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s;
}

.submit-btn:hover {
  background: var(--accent-hover);
}

/* FAQ Accordion */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border-color);
  border-radius: 6px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-header {
  background: rgba(15, 23, 42, 0.6);
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-heading);
}

.faq-header h3 {
  font-size: 1.1rem;
}

.faq-icon {
  font-size: 1.2rem;
  transition: transform 0.3s;
}

.faq-body {
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background: rgba(2, 44, 34, 0.1);
  color: var(--text-muted);
}

.faq-item.active .faq-body {
  padding: 1.5rem;
  max-height: 300px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

/* Trust Layer (Pre-Footer) */
.trust-layer {
  background: rgba(2, 44, 34, 0.4);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.trust-layer-box {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

.trust-layer h4 {
  font-size: 1.2rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

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

.trust-layer-links {
  margin-top: 1.5rem;
  display: flex;
  gap: 1.5rem;
  font-size: 0.85rem;
  color: var(--accent);
}

/* Footer Section */
footer {
  background: #0B0F19;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 4rem;
}

.footer-col h4 {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-col p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: color 0.2s;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 2rem;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: -200px;
  left: 0;
  width: 100%;
  background: #0B0F19;
  border-top: 2px solid var(--accent);
  z-index: 10000;
  padding: 2rem;
  box-shadow: 0 -10px 30px rgba(0,0,0,0.5);
  transition: bottom 0.5s ease;
}

.cookie-banner.show {
  bottom: 0;
}

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

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

.cookie-text a {
  color: var(--accent);
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

.btn-cookie-accept {
  background: var(--accent);
  color: var(--bg-primary);
  border: none;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
}

.btn-cookie-reject {
  background: transparent;
  border: 1px solid var(--text-muted);
  color: var(--text-light);
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
}

/* Subpages Core Styles */
.subpage-hero {
  padding: 8rem 2rem 4rem 2rem;
  text-align: center;
  border-bottom: 1px solid var(--border-color);
  background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.subpage-hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.subpage-hero p {
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto;
}

.legal-content-container {
  max-width: 800px;
  margin: 4rem auto;
  padding: 0 2rem;
}

.legal-content-container h2 {
  font-size: 1.8rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: var(--accent);
}

.legal-content-container p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.legal-content-container ul {
  list-style-type: disc;
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--text-muted);
}

.legal-content-container li {
  margin-bottom: 0.5rem;
}

/* Contact Grid */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin: 4rem auto;
  padding: 0 2rem;
  max-width: 1200px;
}

.map-wrapper {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border-color);
}

/* Mobile Responsive Adjustments */
@media (max-width: 968px) {
  .hero-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-top: 3rem;
  }
  .hero-image-wrapper img {
    height: 350px;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonials-grid, .services-grid, .pricing-grid {
    grid-template-columns: 1fr;
  }
  .features-asymmetric {
    grid-template-columns: 1fr;
  }
  .form-layout, .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  .nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--bg-primary);
    border-bottom: 1px solid var(--border-color);
    padding: 2rem;
    gap: 1.5rem;
  }
  .nav-menu.show {
    display: flex;
  }
  .burger-btn {
    display: block;
  }
}