:root {
  --primary-color: #1e293b;
  --primary-light: #334155;
  --secondary-color: #d97706;
  --secondary-hover: #b45309;
  --text-dark: #0f172a;
  --text-light: #f8fafc;
  --bg-light: #f1f5f9;
  --bg-white: #ffffff;
  --border-color: #cbd5e1;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Montserrat', sans-serif;
  --max-width: 1200px;
}

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

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--bg-white);
  line-height: 1.6;
}

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

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

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

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

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

/* Header */
.main-header {
  background-color: var(--primary-color);
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

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

.logo-text {
  color: var(--text-light);
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: bold;
}

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

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

.main-nav a:hover {
  color: var(--secondary-color);
}

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

/* Hero */
.hero {
  background: linear-gradient(rgba(30, 41, 59, 0.85), rgba(30, 41, 59, 0.85)), url('images/hero.jpg') no-repeat center center/cover;
  color: var(--text-light);
  padding: 8rem 2rem;
  text-align: center;
}

.hero h1 {
  color: var(--text-light);
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.hero p {
  font-size: 1.25rem;
  max-width: 800px;
  margin: 0 auto 2rem auto;
}

.btn {
  display: inline-block;
  background-color: var(--secondary-color);
  color: var(--text-light);
  padding: 0.75rem 2rem;
  border-radius: 4px;
  font-weight: bold;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: var(--secondary-hover);
  color: var(--text-light);
}

/* Stats */
.stats {
  padding: 4rem 2rem;
  background-color: var(--bg-light);
  text-align: center;
}

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

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

/* How It Works */
.how-it-works {
  padding: 6rem 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

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

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

.step-card {
  background-color: var(--bg-light);
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
  position: relative;
}

.step-card .icon {
  font-size: 2rem;
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

/* Features Block */
.features-section {
  background-color: var(--bg-light);
  padding: 6rem 2rem;
}

.features-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: var(--max-width);
  margin: 0 auto;
  align-items: center;
}

.features-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

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

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

.features-list li i {
  position: absolute;
  left: 0;
  top: 4px;
  color: var(--secondary-color);
}

/* Services */
.services-section {
  padding: 6rem 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

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

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

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

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

.service-card-body {
  padding: 1.5rem;
}

/* Pricing */
.pricing-section {
  padding: 6rem 2rem;
  background-color: var(--bg-light);
}

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

.pricing-card {
  background-color: var(--bg-white);
  padding: 3rem 2rem;
  border-radius: 8px;
  text-align: center;
  border: 1px solid var(--border-color);
  position: relative;
}

.pricing-card.popular {
  border-color: var(--secondary-color);
  box-shadow: 0 8px 30px rgba(217,119,6, 0.15);
  transform: scale(1.03);
}

.popular-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: var(--secondary-color);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: bold;
}

.price {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--primary-color);
  margin: 1.5rem 0;
}

/* Form Section */
.form-section {
  padding: 6rem 2rem;
  max-width: 600px;
  margin: 0 auto;
}

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

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

.form-control {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  font-family: var(--font-body);
}

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

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

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

/* Trust Layer */
.trust-layer {
  background-color: var(--primary-light);
  color: var(--text-light);
  padding: 4rem 2rem;
  border-top: 4px solid var(--secondary-color);
}

.trust-container {
  max-width: var(--max-width);
  margin: 0 auto;
}

.trust-info h4 {
  color: var(--secondary-color);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.trust-disclaimer {
  margin-top: 1rem;
  font-size: 0.85rem;
  opacity: 0.8;
}

/* Footer */
.main-footer {
  background-color: var(--primary-color);
  color: var(--text-light);
  padding: 4rem 2rem 2rem 2rem;
  border-top: 1px solid var(--primary-light);
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

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

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

.footer-links a {
  color: var(--text-light);
}

.footer-links a:hover {
  color: var(--secondary-color);
}

.footer-bottom {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--primary-light);
  font-size: 0.85rem;
}

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

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

/* Accordion */
.accordion-item {
  border-bottom: 1px solid var(--border-color);
  padding: 1rem 0;
}

.accordion-title {
  font-weight: bold;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
}

.accordion-content {
  display: none;
  padding-top: 1rem;
}

/* Maps */
.map-container {
  margin-top: 2rem;
  height: 350px;
  border: 0;
  border-radius: 8px;
  overflow: hidden;
}

/* Responsive */
@media (max-width: 768px) {
  .main-nav {
    display: none;
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--primary-color);
    padding: 1rem 2rem;
  }
  
  .main-nav.active {
    display: block;
  }
  
  .main-nav ul {
    flex-direction: column;
    gap: 1rem;
  }
  
  .burger-menu {
    display: block;
  }
  
  .features-container {
    grid-template-columns: 1fr;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
}

@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;
  }
}