:root {
  --color-primary: #0f172a;
  --color-secondary: #1e293b;
  --color-accent: #d97706;
  --color-accent-hover: #b45309;
  --color-light: #f8fafc;
  --color-dark: #0f172a;
  --color-text: #334155;
  --color-muted: #64748b;
  --font-headings: 'Merriweather', Georgia, serif;
  --font-body: 'Source Sans 3', system-ui, -apple-system, sans-serif;
}

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

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

h1, h2, h3, h4 {
  font-family: var(--font-headings);
  color: var(--color-primary);
  font-weight: 700;
  margin-bottom: 1rem;
}

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

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

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

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

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

/* Header & Nav */
header {
  background: var(--color-primary);
  color: white;
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 3px solid var(--color-accent);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 5%;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  font-family: var(--font-headings);
  font-size: 1.5rem;
  font-weight: bold;
}

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

nav ul {
  display: flex;
  list-style: none;
  gap: 20px;
  align-items: center;
}

nav ul a {
  color: #cbd5e1;
  font-weight: 500;
}

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

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

/* Buttons */
.btn {
  display: inline-block;
  background-color: var(--color-accent);
  color: white;
  padding: 0.8rem 1.8rem;
  border-radius: 4px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  text-align: center;
}

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

/* Hero Section */
.hero {
  background: linear-gradient(rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.85)), url('images/hero.jpg') no-repeat center center/cover;
  color: white;
  padding: 8rem 0 6rem 0;
  text-align: center;
}

.hero h1 {
  color: white;
  font-size: 3rem;
  max-width: 900px;
  margin: 0 auto 1.5rem auto;
}

.hero p {
  font-size: 1.3rem;
  max-width: 700px;
  margin: 0 auto 2.5rem auto;
  color: #cbd5e1;
}

/* Stats Section */
.stats {
  background: white;
  padding: 3rem 0;
  border-bottom: 1px solid #e2e8f0;
}

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

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

.stat-item p {
  color: var(--color-muted);
  font-weight: 500;
}

/* Steps Section */
.steps {
  padding: 5rem 0;
  background-color: #f1f5f9;
}

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

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--color-accent);
  margin: 10px auto 0 auto;
}

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

.step-card {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
  text-align: center;
  border-top: 4px solid var(--color-accent);
}

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

/* Services section overview */
.services-section {
  padding: 5rem 0;
  background: white;
}

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

.service-card {
  background: var(--color-light);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
  transition: transform 0.3s;
}

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

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

.service-content {
  padding: 2rem;
}

/* Feature block (Asymmetric) */
.feature-block {
  padding: 5rem 0;
  background: #f1f5f9;
}

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

.feature-img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
  max-height: 450px;
  object-fit: cover;
}

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

.feature-list li {
  margin-bottom: 1rem;
  position: relative;
  padding-left: 2rem;
}

.feature-list li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--color-accent);
}

/* Pricing Grid */
.pricing {
  padding: 5rem 0;
  background: white;
}

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

.price-card {
  background: var(--color-light);
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 3rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  position: relative;
}

.price-card.featured {
  border: 2px solid var(--color-accent);
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
  transform: scale(1.03);
}

.badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: var(--color-accent);
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
}

.price-num {
  font-size: 2.5rem;
  font-family: var(--font-headings);
  color: var(--color-primary);
  margin: 1.5rem 0;
}

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

.price-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #e2e8f0;
}

.price-card .btn {
  margin-top: auto;
}

/* Lead Form Section */
.form-section {
  padding: 5rem 0;
  background: var(--color-primary);
  color: white;
}

.form-section h2 {
  color: white;
  text-align: center;
}

.form-container {
  max-width: 650px;
  margin: 0 auto;
  background: var(--color-secondary);
  padding: 3rem;
  border-radius: 8px;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.3);
}

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

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

.form-control {
  width: 100%;
  padding: 0.8rem;
  border-radius: 4px;
  border: 1px solid #475569;
  background-color: #0f172a;
  color: white;
  font-size: 1rem;
}

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

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

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

/* FAQ Accordeon */
.faq-section {
  padding: 5rem 0;
  background: white;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #e2e8f0;
  padding: 1.5rem 0;
}

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

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  color: var(--color-muted);
  margin-top: 0.5rem;
}

.faq-item.active .faq-content {
  max-height: 300px;
}

/* Trust Layer & Footer */
.trust-layer {
  background-color: #f1f5f9;
  border-top: 1px solid #cbd5e1;
  padding: 3rem 0;
  font-size: 0.95rem;
  color: #475569;
}

.trust-layer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
}

.trust-layer h4 {
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
}

footer {
  background: var(--color-primary);
  color: #cbd5e1;
  padding: 4rem 0 2rem 0;
  border-top: 4px solid var(--color-accent);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 3rem;
}

.footer-col h4 {
  color: white;
  font-family: var(--font-headings);
  margin-bottom: 1.5rem;
}

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

.footer-col ul li {
  margin-bottom: 0.8rem;
}

.footer-col ul a {
  color: #cbd5e1;
}

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

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #1e293b;
  font-size: 0.9rem;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: #0f172a;
  color: white;
  padding: 1.5rem 2rem;
  border-radius: 8px;
  box-shadow: 0 10px 25px -5px rgba(0,0,0,0.3);
  z-index: 1000;
  display: none;
  flex-direction: column;
  gap: 15px;
  max-width: 600px;
  border-left: 5px solid var(--color-accent);
}

@media(min-width: 768px) {
  .cookie-banner {
    left: auto;
    right: 40px;
    bottom: 40px;
  }
}

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

.btn-cookie {
  padding: 0.5rem 1.2rem;
  font-size: 0.9rem;
}

.btn-cookie-secondary {
  background: transparent;
  border: 1px solid #cbd5e1;
  color: white;
}

.btn-cookie-secondary:hover {
  background: #1e293b;
}

/* Accessibility reduced motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Responsive adjustments */
@media(max-width: 992px) {
  .hero h1 { font-size: 2.3rem; }
  .feature-grid { grid-template-columns: 1fr; gap: 30px; }
}

@media(max-width: 768px) {
  nav ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--color-primary);
    flex-direction: column;
    padding: 1.5rem;
    border-bottom: 2px solid var(--color-accent);
  }
  
  nav ul.show {
    display: flex;
  }
  
  .burger-menu {
    display: block;
  }
  
  .price-card.featured {
    transform: none;
  }
}