﻿:root {
  --bg-primary: #0b0c10;
  --bg-secondary: #12141c;
  --bg-card: #1a1d29;
  --text-main: #f1f3f9;
  --text-muted: #94a3b8;
  --accent-gold: #c5a059;
  --accent-cyan: #00f2fe;
  --accent-cyan-dark: #00b8d4;
  --border-color: #262b3d;
  --font-family: 'Montserrat', sans-serif;
}

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

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

/* Unique Graphic Blob Element */
body::before {
  content: "";
  position: absolute;
  top: 10%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0,242,252,0.08) 0%, rgba(197,160,89,0.03) 70%, transparent 100%);
  z-index: -1;
  pointer-events: none;
  border-radius: 50%;
}

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

header {
  background-color: rgba(11, 12, 16, 0.95);
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(8px);
}

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

.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text-main);
}

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

.logo-text {
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: 1px;
}

.logo-text span {
  color: var(--accent-cyan);
}

.nav-menu {
  display: flex;
  gap: 25px;
  list-style: none;
}

.nav-menu a {
  color: var(--text-main);
  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-cyan);
}

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

main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* Sections */
section {
  padding: 80px 0;
}

.hero {
  display: flex;
  align-items: center;
  gap: 40px;
  min-height: 70vh;
}

.hero-content {
  flex: 1;
}

.hero-content h1 {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 20px;
  font-weight: 900;
}

.hero-content h1 span {
  color: var(--accent-cyan);
  display: block;
}

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

.hero-img {
  flex: 1;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: 0 10px 30px rgba(0, 242, 252, 0.1);
}

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

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background-color: var(--accent-cyan);
  color: #0b0c10;
}

.btn-primary:hover {
  background-color: var(--accent-cyan-dark);
  box-shadow: 0 0 15px rgba(0, 242, 252, 0.4);
}

.btn-outline {
  border: 2px solid var(--accent-gold);
  color: var(--accent-gold);
  background: transparent;
}

.btn-outline:hover {
  background-color: var(--accent-gold);
  color: #000;
}

/* Stats */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  background-color: var(--bg-secondary);
  padding: 40px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
}

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

.stat-num {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent-gold);
  margin-bottom: 5px;
}

/* Trust / Social Proof */
.social-proof {
  text-align: center;
  border-top: 1px solid var(--border-color);
}

.brand-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
  margin: 30px 0 50px;
  opacity: 0.7;
}

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

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

.testi-card {
  background-color: var(--bg-card);
  padding: 30px;
  border-radius: 10px;
  border-top: 3px solid var(--accent-gold);
}

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

.testi-author {
  font-weight: bold;
  font-size: 0.95rem;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.service-card {
  background-color: var(--bg-card);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border-color);
}

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

.service-content {
  padding: 25px;
}

.service-content h3 {
  margin-bottom: 15px;
  color: var(--accent-cyan);
}

/* Features */
.features-block {
  display: flex;
  align-items: center;
  gap: 50px;
}

.features-block.reverse {
  flex-direction: row-reverse;
}

.features-content {
  flex: 1;
}

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

.features-content li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 25px;
}

.features-content li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--accent-cyan);
}

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

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.pricing-card {
  background-color: var(--bg-card);
  padding: 40px 30px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  position: relative;
  transition: transform 0.3s;
}

.pricing-card.premium {
  border: 2px solid var(--accent-cyan);
  transform: scale(1.03);
}

.badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--accent-cyan);
  color: #000;
  padding: 5px 15px;
  font-size: 0.8rem;
  font-weight: bold;
  border-radius: 20px;
}

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

.price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent-gold);
  margin-bottom: 25px;
}

.pricing-features {
  list-style: none;
  margin-bottom: 30px;
  text-align: left;
}

.pricing-features li {
  margin-bottom: 10px;
  color: var(--text-muted);
}

/* Form Section */
.form-section {
  background-color: var(--bg-secondary);
  border-radius: 15px;
  padding: 50px;
  border: 1px solid var(--border-color);
}

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

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

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

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

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

.form-control {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  color: var(--text-main);
  padding: 12px;
  border-radius: 6px;
  font-size: 1rem;
}

.form-control:focus {
  border-color: var(--accent-cyan);
  outline: none;
}

.form-checkbox {
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
}

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

/* Trust Layer (Vor-Footer) */
.trust-layer {
  background-color: var(--bg-card);
  padding: 40px;
  border-radius: 10px;
  border: 1px solid var(--border-color);
  margin-top: 60px;
}

.trust-layer h4 {
  color: var(--accent-gold);
  margin-bottom: 15px;
}

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

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

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-col h5 {
  color: var(--accent-cyan);
  margin-bottom: 20px;
}

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

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

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

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

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

/* Accordions (FAQ) */
.accordion-item {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.accordion-header {
  padding: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
}

.accordion-body {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: var(--text-muted);
}

.accordion-item.active .accordion-body {
  padding: 20px;
  max-height: 300px;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 500px;
  background-color: var(--bg-card);
  border: 1px solid var(--accent-cyan);
  border-radius: 12px;
  padding: 25px;
  z-index: 10000;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

/* Responsiveness */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }
  .nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: var(--bg-secondary);
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
  }
  .nav-menu.active {
    display: flex;
  }
  .burger {
    display: block;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .features-block {
    flex-direction: column;
  }
  .features-block.reverse {
    flex-direction: column;
  }
}