@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600&family=Syne:wght@400;500&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

:root {
  --bg-primary: #070913;
  --bg-secondary: #0e1124;
  --bg-tertiary: #171c3a;
  --accent-primary: #10b981;
  --accent-secondary: #6366f1;
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --border-color: rgba(255, 255, 255, 0.08);
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --font-heading: 'Syne', sans-serif;
}

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

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

.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--accent-primary);
  color: var(--bg-primary);
  padding: 8px 16px;
  z-index: 1000;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 0;
}

header {
  background: rgba(7, 9, 19, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 1.25rem 2rem;
}

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

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

.logo-link img {
  width: 32px;
  height: 32px;
}

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

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

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

.burger-menu {
  display: none;
  background: none;
  border: none;
  color: var(--text-main);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Unique Graphic Effect: Pulsing Neon Aperture Wireframe Background */
.graphic-aperture {
  position: absolute;
  top: 15%;
  right: -100px;
  width: 550px;
  height: 550px;
  border: 2px dashed rgba(99, 102, 241, 0.15);
  border-radius: 50%;
  animation: spinAperture 45s linear infinite;
  pointer-events: none;
  z-index: 0;
}

.graphic-aperture::before {
  content: '';
  position: absolute;
  top: 15%;
  left: 15%;
  width: 70%;
  height: 70%;
  border: 1px dashed rgba(16, 185, 129, 0.15);
  border-radius: 50%;
  animation: spinApertureReverse 25s linear infinite;
}

@keyframes spinAperture {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes spinApertureReverse {
  0% { transform: rotate(360deg); }
  100% { transform: rotate(0deg); }
}

main {
  position: relative;
  z-index: 1;
}

section {
  padding: 5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

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

h1, h2, h3 {
  font-family: var(--font-heading);
  font-weight: 500;
  margin-bottom: 1.5rem;
}

h1 {
  font-size: 3rem;
  line-height: 1.15;
  color: var(--text-main);
}

h1 span {
  color: var(--accent-primary);
}

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

.btn {
  display: inline-block;
  background: var(--accent-primary);
  color: var(--bg-primary);
  padding: 0.9rem 2.2rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
  border: none;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
  background: #0d9668;
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.3);
}

.img-wrapper {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.img-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

/* Features Asymmetric Block */
.asym-section {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: center;
}

.asym-section.reverse {
  grid-template-columns: 1.1fr 1fr;
}

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

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

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

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

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

.pricing-card:hover {
  border-color: var(--accent-secondary);
}

.pricing-card.featured {
  border-color: var(--accent-primary);
  box-shadow: 0 10px 35px rgba(16, 185, 129, 0.15);
  transform: scale(1.03);
}

.pricing-card .badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: var(--accent-primary);
  color: var(--bg-primary);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
}

.price {
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 1.5rem;
  font-family: var(--font-heading);
}

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

.pricing-card ul {
  list-style: none;
  margin-bottom: 2.5rem;
  flex-grow: 1;
}

.pricing-card ul li {
  margin-bottom: 0.85rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* Lead Capture Form */
.form-section {
  background: var(--bg-secondary);
  border-radius: 12px;
  border: 1px solid var(--border-color);
  padding: 4rem;
  margin-top: 4rem;
  margin-bottom: 4rem;
  max-width: 800px;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.form-control {
  width: 100%;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  color: var(--text-main);
  padding: 0.9rem 1.1rem;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s;
}

.form-control:focus {
  border-color: var(--accent-primary);
}

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

.checkbox-group input {
  margin-top: 0.25rem;
}

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

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

/* Accordion FAQs */
.faq-list {
  margin-top: 2rem;
}

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

.faq-trigger {
  width: 100%;
  background: none;
  border: none;
  color: var(--text-main);
  font-family: var(--font-heading);
  font-size: 1.25rem;
  text-align: left;
  padding: 1.25rem 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.faq-content p {
  padding-bottom: 1.5rem;
}

/* Contact Page Grid */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
}

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

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Trust Layer */
.trust-layer {
  background: #04060d;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 3.5rem 2rem;
}

.trust-box {
  max-width: 1200px;
  margin: 0 auto;
}

.trust-box h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--accent-primary);
  margin-bottom: 1rem;
}

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

/* Footer layout */
footer {
  background: #020307;
  padding: 5rem 2rem 2.5rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 3.5rem;
  margin-bottom: 2.5rem;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-top: 1rem;
}

.footer-links h5 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

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

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

.footer-links ul li a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}

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

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  bottom: -250px;
  left: 0;
  right: 0;
  background: var(--bg-secondary);
  border-top: 2px solid var(--accent-primary);
  padding: 1.5rem 2rem;
  z-index: 1000;
  transition: bottom 0.5s ease-in-out;
}

.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.85rem;
  color: var(--text-muted);
}

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

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

.cookie-btn-decline {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border-color);
  padding: 0.6rem 1.75rem;
  border-radius: 4px;
  cursor: pointer;
}

/* Responsive configurations */
@media (max-width: 992px) {
  .hero-grid, .asym-section, .asym-section.reverse, .pricing-grid, .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .pricing-card.featured {
    transform: none;
  }
  .footer-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-secondary);
    padding: 2rem;
    border-bottom: 1px solid var(--border-color);
  }
  .nav-menu.show {
    display: flex;
  }
  .burger-menu {
    display: block;
  }
  h1 {
    font-size: 2.5rem;
  }
  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }
}