:root {
  --bg-dark: #0c0a12;
  --bg-card: #151221;
  --bg-nav: rgba(12, 10, 18, 0.95);
  --primary: #d4af37;
  --primary-hover: #c5a059;
  --accent: #00f2fe;
  --text-light: #f0edfd;
  --text-muted: #9e9aa8;
  --border-color: #231d36;
  --shadow-color: rgba(0, 0, 0, 0.5);
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

body {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

/* Custom Aperture Geometric Decoration Element */
.aperture-backdrop {
  position: absolute;
  width: 600px;
  height: 600px;
  border: 1px solid rgba(0, 242, 254, 0.1);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}
.aperture-backdrop::before {
  content: '';
  position: absolute;
  top: 10%; left: 10%; right: 10%; bottom: 10%;
  border: 2px dashed rgba(212, 175, 55, 0.15);
  border-radius: 50%;
  animation: rotate 60s linear infinite;
}
@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

header {
  background-color: var(--bg-nav);
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text-light);
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 1px;
}

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

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

.nav-menu a {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}

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

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

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

/* Hero Section */
.hero {
  padding: 120px 0;
  overflow: hidden;
  background: radial-gradient(circle at 80% 20%, rgba(0, 242, 254, 0.08), transparent 50%),
              radial-gradient(circle at 10% 80%, rgba(212, 175, 55, 0.05), transparent 50%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
}

.hero-content h1 {
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 25px;
  font-weight: 800;
}

.hero-content h1 span {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

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

.btn {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  transition: var(--transition);
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, #b2932e 100%);
  color: var(--bg-dark);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
  border: 1px solid var(--border-color);
  color: var(--text-light);
  background: rgba(255, 255, 255, 0.02);
}

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

.hero-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 20px 40px var(--shadow-color);
  border: 1px solid var(--border-color);
}

/* Statistics */
.stats {
  background: var(--bg-card);
  padding: 50px 0;
  border-top: 1.5px solid var(--border-color);
  border-bottom: 1.5px solid var(--border-color);
}

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

.stat-card h3 {
  font-size: 2.5rem;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 10px;
}

.stat-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Social Proof */
.social-proof {
  background: rgba(12, 10, 18, 0.6);
}

.partner-logos {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  opacity: 0.6;
  margin-bottom: 50px;
}

.partner-logos i {
  font-size: 2.2rem;
  color: var(--text-light);
  transition: var(--transition);
}

.partner-logos i:hover {
  opacity: 1;
  color: var(--primary);
}

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

.review-card {
  background: var(--bg-card);
  padding: 30px;
  border-radius: 6px;
  border-left: 4px solid var(--primary);
  box-shadow: 0 10px 20px var(--shadow-color);
}

.review-stars {
  color: var(--primary);
  margin-bottom: 15px;
}

.review-text {
  font-style: italic;
  margin-bottom: 20px;
}

.review-author {
  font-weight: bold;
  color: var(--accent);
}

/* Services section */
.services-section {
  background: var(--bg-card);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

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

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

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

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

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

.service-body {
  padding: 30px;
}

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

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

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

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

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

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

.feature-item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.feature-item i {
  color: var(--accent);
  font-size: 1.3rem;
  margin-top: 5px;
}

.feature-item h4 {
  font-size: 1.15rem;
  margin-bottom: 5px;
}

.feature-item p {
  color: var(--text-muted);
}

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

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 40px 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition);
  position: relative;
}

.pricing-card.featured {
  border-color: var(--primary);
  transform: scale(1.03);
  box-shadow: 0 15px 30px rgba(212, 175, 55, 0.15);
}

.badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--primary);
  color: var(--bg-dark);
  font-size: 0.75rem;
  font-weight: bold;
  padding: 4px 10px;
  border-radius: 12px;
}

.pricing-header h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.price {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--text-light);
  margin: 20px 0;
}

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

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

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

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

/* Form Section */
.form-section {
  background: var(--bg-card);
}

.form-wrapper {
  max-width: 650px;
  margin: 0 auto;
  background: var(--bg-dark);
  padding: 50px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--text-light);
}

.form-control {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  padding: 12px 15px;
  border-radius: 4px;
  color: var(--text-light);
  font-size: 1rem;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 10px rgba(0, 242, 254, 0.2);
}

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

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

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

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

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

.faq-item {
  border-bottom: 1px solid var(--border-color);
  padding: 20px 0;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 1.2rem;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
}

.faq-question i {
  transition: var(--transition);
}

.faq-question.active i {
  transform: rotate(180deg);
  color: var(--accent);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.faq-answer-content {
  padding-top: 15px;
  color: var(--text-muted);
}

/* Trust Layer */
.trust-layer {
  background: rgba(20, 16, 32, 0.95);
  border-top: 2px solid var(--primary);
  padding: 40px 0;
  font-size: 0.85rem;
}

.trust-layer h3 {
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: 15px;
}

.trust-layer p {
  color: var(--text-muted);
  margin-bottom: 10px;
  line-height: 1.5;
}

.trust-layer .disclaimer {
  border-left: 2px solid var(--border-color);
  padding-left: 15px;
  font-style: italic;
}

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

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

.footer-logo h4 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--text-light);
}

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

.footer-col h5 {
  color: var(--primary);
  font-size: 1.1rem;
  margin-bottom: 20px;
}

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

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

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

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

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

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 20px;
  border-radius: 6px;
  box-shadow: 0 10px 30px var(--shadow-color);
  z-index: 9999;
  display: none;
}

.cookie-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

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

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

.cookie-buttons {
  display: flex;
  gap: 10px;
}

.btn-cookie {
  padding: 8px 20px;
  border-radius: 4px;
  cursor: pointer;
  border: none;
  font-weight: bold;
}

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

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

/* Contact page specific maps */
.map-responsive {
  overflow:hidden;
  padding-bottom:56.25%;
  position:relative;
  height:0;
  margin-top: 30px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
}
.map-responsive iframe {
  left:0;
  top:0;
  height:100%;
  width:100%;
  position:absolute;
}

/* 404 & Thank you design alignment */
.message-page {
  text-align: center;
  padding: 120px 0;
}
.message-page i {
  font-size: 4.5rem;
  color: var(--primary);
  margin-bottom: 30px;
}

/* Responsive Logic */
@media (max-width: 992px) {
  .hero-grid, .features-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-content h1 {
    font-size: 2.8rem;
  }
  .btn-group {
    justify-content: center;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-grid, .pricing-grid, .reviews-grid {
    grid-template-columns: 1fr;
  }
  .pricing-card.featured {
    transform: none;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: var(--bg-dark);
    flex-direction: column;
    align-items: center;
    padding-top: 50px;
    transition: var(--transition);
    border-top: 1px solid var(--border-color);
  }
  .nav-menu.active {
    left: 0;
  }
  .nav-toggle {
    display: block;
  }
  .cookie-container {
    flex-direction: column;
    text-align: center;
  }
}