﻿:root {
  --bg-color: #0A0E1A;
  --surface-color: rgba(20, 27, 47, 0.65);
  --accent-lime: #C5FF41;
  --accent-violet: #6C5DD3;
  --text-main: #F3F4F6;
  --text-muted: #9CA3AF;
  --border-color: rgba(255, 255, 255, 0.08);
  --font-body: 'Inter', sans-serif;
  --font-heading: 'Syne', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

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

/* Unique Animated Glow Background */
body::before {
  content: '';
  position: fixed;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(108, 93, 211, 0.08) 0%, rgba(197, 255, 65, 0.02) 40%, rgba(10, 14, 26, 0) 70%);
  z-index: -1;
  pointer-events: none;
  animation: auraMove 35s infinite alternate linear;
}

@keyframes auraMove {
  0% { transform: translate(0, 0) rotate(0deg); }
  100% { transform: translate(5%, 5%) rotate(360deg); }
}

/* Accessibility */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--accent-lime);
  color: #000;
  padding: 10px 20px;
  z-index: 9999;
  transition: top 0.2s;
  font-weight: 600;
  text-decoration: none;
}
.skip-link:focus {
  top: 0;
}

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 500;
  color: #fff;
}

a {
  color: var(--accent-lime);
  text-decoration: none;
  transition: color 0.3s ease;
}
a:hover {
  color: #fff;
}

/* Header & Navigation */
header {
  background: rgba(10, 14, 26, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  width: 40px;
  height: 40px;
}

.brand-text {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 1.4rem;
  letter-spacing: -1px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
  align-items: center;
}

.nav-links a {
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 500;
}

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

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

/* Grid & Layout Utilities */
main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

section {
  padding: 80px 0;
}

.container-wide {
  max-width: 1200px;
  margin: 0 auto;
}

/* Hero Section */
.hero {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 60px 0;
}

.hero-content h1 {
  font-size: 3.5rem;
  line-height: 1.15;
  margin-bottom: 24px;
}

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

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

.cta-group {
  display: flex;
  gap: 20px;
}

.btn {
  display: inline-block;
  padding: 15px 32px;
  border-radius: 8px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.btn-primary {
  background: var(--accent-lime);
  color: #000;
  box-shadow: 0 4px 20px rgba(197, 255, 65, 0.25);
  border: 1px solid var(--accent-lime);
}

.btn-primary:hover {
  background: transparent;
  color: var(--accent-lime);
  box-shadow: none;
}

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

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--accent-lime);
}

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

/* Stats Section */
.stats {
  background: var(--surface-color);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 50px;
  margin-bottom: 80px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  text-align: center;
}

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

.stat-item p {
  color: var(--text-muted);
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
}

/* Social Proof */
.social-proof {
  text-align: center;
  margin-bottom: 80px;
}

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

.social-proof p {
  color: var(--text-muted);
  margin-bottom: 40px;
}

.brand-logos {
  display: flex;
  justify-content: center;
  gap: 60px;
  opacity: 0.6;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.brand-logos i {
  font-size: 2.5rem;
}

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

.testimonial-card {
  background: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 30px;
  text-align: left;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 20px;
  color: var(--text-main);
}

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

/* Features */
.features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

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

.features-content ul {
  list-style: none;
  margin-top: 30px;
}

.features-content li {
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.features-content li i {
  color: var(--accent-lime);
  font-size: 1.25rem;
  margin-top: 4px;
}

/* Services Grid */
.services-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 40px;
}

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

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

.service-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-violet);
}

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

.service-card-body {
  padding: 30px;
}

.service-card-body h3 {
  margin-bottom: 15px;
  font-size: 1.35rem;
}

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

/* Pricing */
.pricing-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
}

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

.pricing-card {
  background: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.pricing-card.featured {
  border-color: var(--accent-lime);
  box-shadow: 0 8px 32px rgba(197, 255, 65, 0.1);
  transform: scale(1.03);
}

.pricing-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--accent-lime);
  color: #000;
  font-weight: 700;
  font-size: 0.75rem;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
}

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

.price {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 25px;
}

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

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

.pricing-features li {
  margin-bottom: 12px;
  color: var(--text-muted);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

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

/* Lead Form Section */
.form-section {
  background: linear-gradient(135deg, rgba(20,27,47,0.9) 0%, rgba(10,14,26,0.9) 100%);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 60px;
  margin-top: 80px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

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

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

.contact-meta {
  margin-top: 30px;
}

.contact-meta-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  color: #fff;
}

.contact-meta-item i {
  color: var(--accent-lime);
}

.form-wrapper form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group-full {
  grid-column: span 2;
}

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

.form-group input, .form-group textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 12px 16px;
  color: #fff;
  font-family: var(--font-body);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus, .form-group textarea:focus {
  border-color: var(--accent-lime);
  box-shadow: 0 0 10px rgba(197, 255, 65, 0.15);
  outline: none;
}

.consent-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.consent-label input {
  margin-top: 4px;
}

.spinner {
  display: inline-block;
  width: 12px;
  height: 12px;
  border: 2px solid rgba(0,0,0,0.3);
  border-radius: 50%;
  border-top-color: #000;
  animation: spin 0.8s ease-in-out infinite;
  margin-right: 8px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Trust Layer (Plaque) */
.trust-layer {
  background: rgba(10, 14, 26, 0.95);
  border: 1px dashed var(--border-color);
  padding: 40px;
  border-radius: 12px;
  margin: 80px 0 40px 0;
  text-align: left;
}

.trust-layer h4 {
  color: var(--accent-lime);
  margin-bottom: 15px;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

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

/* Footer */
footer {
  border-top: 1px solid var(--border-color);
  padding: 60px 0 40px 0;
  background: #060912;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h5 {
  margin-bottom: 20px;
  font-size: 1rem;
  color: #fff;
}

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

.footer-col li {
  margin-bottom: 12px;
}

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

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

.footer-legal-bar {
  border-top: 1px solid var(--border-color);
  padding-top: 30px;
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
}

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

.faq-item {
  background: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.faq-item-title {
  padding: 24px 30px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
  font-size: 1.1rem;
}

.faq-item-title i {
  color: var(--accent-lime);
  transition: transform 0.3s ease;
}

.faq-item-content {
  padding: 0 30px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.faq-active .faq-item-title i {
  transform: rotate(180deg);
}

.faq-active .faq-item-content {
  padding: 0 30px 24px 30px;
  max-height: 500px;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 500px;
  background: #111827;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 24px;
  z-index: 10000;
  box-shadow: 0 10px 40px rgba(0,0,0,0.6);
  display: none;
}

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

.cookie-banner-btns {
  display: flex;
  gap: 12px;
}

.cookie-banner-btns button {
  flex-grow: 1;
  padding: 10px;
  font-size: 0.85rem;
}

/* Standard pages Hero alignment */
.page-hero {
  text-align: center;
  padding: 60px 0 40px 0;
  max-width: 800px;
  margin: 0 auto;
}

.page-hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

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

/* Legal layout style */
.legal-content {
  max-width: 800px;
  margin: 0 auto 80px auto;
  background: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 50px;
}

.legal-content h2 {
  font-size: 1.5rem;
  margin: 30px 0 15px 0;
}

.legal-content p, .legal-content li {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 15px;
}

.legal-content ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

/* Contact map simulation */
.map-placeholder {
  height: 400px;
  background: #161c2d;
  border: 1px solid var(--border-color);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-top: 40px;
  padding: 30px;
}

.map-placeholder i {
  font-size: 3rem;
  color: var(--accent-lime);
  margin-bottom: 15px;
}

/* Responsive breakpoint scaling */
@media (max-width: 992px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .cta-group {
    justify-content: center;
  }
  .stats-grid, .testimonials, .services-grid, .pricing-grid, .footer-grid, .form-section {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .features {
    grid-template-columns: 1fr;
  }
  .pricing-card.featured {
    transform: none;
  }
  .form-section {
    padding: 30px;
  }
  .nav-links {
    position: fixed;
    top: 80px;
    right: 0;
    bottom: 0;
    left: 0;
    background: #0A0E1A;
    flex-direction: column;
    padding-top: 60px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
  }
  .nav-links.nav-active {
    transform: translateX(0);
  }
  .burger-menu {
    display: block;
  }
}