:root {
  --primary: #0f172a;
  --secondary: #1e293b;
  --accent: #d97706;
  --accent-hover: #b45309;
  --text: #f8fafc;
  --text-muted: #94a3b8;
  --bg: #020617;
  --card-bg: #0f172a;
  --font-title: 'Playfair Display', serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
}

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

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.7;
  font-size: 1.1rem;
}

h1, h2, h3, h4 {
  font-family: var(--font-title);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.3s;
}

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

.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--accent);
  color: #fff;
  padding: 8px;
  z-index: 100;
  transition: top 0.3s;
}

.skip-link:focus {
  top: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Header */
header {
  background: var(--primary);
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--secondary);
}

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

.logo-area {
  display: flex;
  align-items: center;
  gap: 10px;
}

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

.logo-text {
  font-family: var(--font-title);
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 1.5rem;
}

nav a {
  color: var(--text);
  font-weight: 500;
}

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

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

/* Mobile Nav Overlay */
.mobile-nav {
  position: fixed;
  top: 70px;
  left: -100%;
  width: 100%;
  height: calc(100vh - 70px);
  background: var(--primary);
  display: flex;
  flex-direction: column;
  padding: 2rem;
  gap: 1.5rem;
  transition: left 0.3s ease;
  z-index: 49;
}

.mobile-nav.open {
  left: 0;
}

.mobile-nav a {
  font-size: 1.3rem;
  color: #fff;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

/* Hero Section */
.hero {
  position: relative;
  background: linear-gradient(rgba(2, 6, 23, 0.8), rgba(2, 6, 23, 0.9)), url('images/hero.jpg') no-repeat center center/cover;
  padding: 8rem 2rem;
  text-align: center;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.hero p {
  font-size: 1.3rem;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto 2.5rem;
}

.btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 1rem 2.5rem;
  font-weight: bold;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
  font-size: 1.1rem;
}

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

/* Statistics */
.stats {
  background: var(--secondary);
  padding: 3rem 2rem;
  text-align: center;
}

.stats-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

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

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

/* Steps (How it works) */
.steps-section {
  background: var(--bg);
}

.section-title {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 3rem;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.step-card {
  background: var(--card-bg);
  padding: 2.5rem;
  border-radius: 8px;
  border-top: 4px solid var(--accent);
  text-align: center;
}

.step-icon {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.step-card h3 {
  margin-bottom: 1rem;
}

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

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

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

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

.service-content {
  padding: 2rem;
}

.service-content h3 {
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.service-content p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

/* Features */
.features-block {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4rem;
  margin-top: 4rem;
}

.features-img {
  flex: 1;
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
  max-height: 450px;
}

.features-text {
  flex: 1;
}

.features-text h2 {
  margin-bottom: 1.5rem;
}

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

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

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

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  align-items: stretch;
}

.price-card {
  background: var(--card-bg);
  padding: 3rem 2rem;
  border-radius: 8px;
  text-align: center;
  border: 1px solid var(--secondary);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.price-card.popular {
  border: 2px solid var(--accent);
  box-shadow: 0 10px 25px -5px rgba(217, 119, 6, 0.2);
}

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

.price-card h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.price-val {
  font-size: 2.8rem;
  font-weight: bold;
  color: #ffffff;
  margin: 1.5rem 0;
}

.price-features {
  list-style: none;
  text-align: left;
  margin-bottom: 2.5rem;
}

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

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

/* Lead Form */
.form-section {
  background: var(--secondary);
}

.form-container {
  max-width: 650px;
  margin: 0 auto;
  background: var(--primary);
  padding: 3.5rem;
  border-radius: 8px;
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-control {
  width: 100%;
  padding: 0.85rem;
  background: var(--bg);
  border: 1px solid var(--secondary);
  border-radius: 4px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 1rem;
}

.form-control:focus {
  outline: 2px solid var(--accent);
}

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

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

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

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

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

.faq-quest {
  width: 100%;
  background: none;
  border: none;
  color: #fff;
  padding: 1.5rem;
  text-align: left;
  font-size: 1.2rem;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-quest i {
  transition: transform 0.3s;
}

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

.faq-ans {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  background: rgba(30, 41, 59, 0.5);
}

.faq-ans-inner {
  padding: 1.5rem;
  color: var(--text-muted);
}

/* Trust Layer & Footer */
.trust-layer {
  background: var(--primary);
  border-top: 1px solid var(--secondary);
  border-bottom: 1px solid var(--secondary);
  font-size: 0.95rem;
  color: var(--text-muted);
}

.trust-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  padding: 2.5rem 2rem;
}

.trust-item h4 {
  color: #fff;
  margin-bottom: 0.8rem;
  font-size: 1.1rem;
}

footer {
  background: var(--bg);
  padding: 3rem 2rem;
  text-align: center;
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

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

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

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

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 500px;
  background: var(--primary);
  border: 1px solid var(--secondary);
  border-radius: 8px;
  padding: 2rem;
  z-index: 1000;
  box-shadow: 0 10px 25px rgba(0,0,0,0.5);
  display: none;
}

.cookie-title {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
  font-weight: bold;
}

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

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

.cookie-btn {
  flex: 1;
  padding: 0.75rem;
  border-radius: 4px;
  border: none;
  font-weight: bold;
  cursor: pointer;
  font-size: 0.95rem;
}

.cookie-btn-accept {
  background: var(--accent);
  color: #fff;
}

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

.cookie-btn-deny {
  background: var(--secondary);
  color: var(--text);
}

.cookie-btn-deny:hover {
  background: #334155;
}

/* Accessibility settings for reduced motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-delay: 0s !important;
    animation-duration: 0s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0s !important;
    scroll-behavior: auto !important;
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  nav ul {
    display: none;
  }
  .burger {
    display: block;
  }
  .features-block {
    flex-direction: column;
  }
  .hero h1 {
    font-size: 2.2rem;
  }
  .form-container {
    padding: 2rem 1.5rem;
  }
}