:root {
  --primary: #0B132B;
  --secondary: #1C2541;
  --accent: #C5A880;
  --accent-hover: #A0845F;
  --bg-light: #F9F8F6;
  --bg-white: #FFFFFF;
  --text-dark: #1C2541;
  --text-light: #F9F8F6;
  --text-muted: #6C757D;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --transition: all 0.3s ease;
}

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

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

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

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

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

.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--accent);
  color: var(--primary);
  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 {
  background-color: var(--primary);
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 99;
}

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

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

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

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

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

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

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

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

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

.hero h1 {
  color: var(--accent);
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

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

.btn {
  display: inline-block;
  background-color: var(--accent);
  color: var(--primary);
  padding: 0.8rem 2rem;
  font-weight: bold;
  border-radius: 4px;
  border: 2px solid var(--accent);
  cursor: pointer;
  transition: var(--transition);
}

.btn:hover {
  background-color: transparent;
  color: var(--accent);
}

.btn-secondary {
  background-color: transparent;
  color: var(--text-light);
  border-color: var(--text-light);
  margin-left: 10px;
}

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

.stats {
  background-color: var(--bg-white);
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  margin-top: -3rem;
  border-radius: 8px;
  position: relative;
  z-index: 10;
}

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

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

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

.step-card {
  background: var(--bg-white);
  padding: 2.5rem;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  text-align: center;
  transition: var(--transition);
}

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

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

.features-block {
  display: flex;
  align-items: center;
  gap: 4rem;
  margin-top: 4rem;
}

.features-image, .features-content {
  flex: 1;
}

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

.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 li i {
  color: var(--accent);
  margin-top: 5px;
}

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

.service-card {
  background: var(--bg-white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  transition: var(--transition);
}

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

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

.service-body {
  padding: 2rem;
}

.service-body h3 {
  margin-bottom: 1rem;
}

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

.pricing-card {
  background: var(--bg-white);
  border-radius: 8px;
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  position: relative;
  border: 1px solid rgba(0,0,0,0.05);
}

.pricing-card.popular {
  border-color: var(--accent);
  box-shadow: 0 15px 40px rgba(197, 168, 128, 0.15);
  transform: scale(1.03);
}

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

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

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

.price-features li {
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

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

.form-section {
  background-color: var(--primary);
  color: var(--text-light);
  border-radius: 8px;
  padding: 4rem;
}

.form-section h2 {
  color: var(--accent);
  margin-bottom: 2rem;
  text-align: center;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

.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: 1px solid rgba(255,255,255,0.2);
  background-color: rgba(255,255,255,0.05);
  color: var(--text-light);
  border-radius: 4px;
}

.form-control:focus {
  outline: none;
  border-color: var(--accent);
  background-color: rgba(255,255,255,0.1);
}

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

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

.faq-accordion {
  max-width: 800px;
  margin: 3rem auto 0;
}

.faq-item {
  background: var(--bg-white);
  border-radius: 8px;
  margin-bottom: 1rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.02);
  overflow: hidden;
}

.faq-header {
  padding: 1.5rem;
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--primary);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-header i {
  color: var(--accent);
  transition: transform 0.3s;
}

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

.faq-body {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.trust-layer {
  background-color: #EAE6DF;
  padding: 2.5rem 2rem;
  font-size: 0.9rem;
  text-align: center;
  border-top: 1px solid rgba(0,0,0,0.05);
}

.trust-layer-content {
  max-width: 1000px;
  margin: 0 auto;
}

footer {
  background-color: var(--primary);
  color: var(--text-light);
  padding: 4rem 2rem 2rem;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 3rem;
}

.footer-col h4 {
  color: var(--accent);
  margin-bottom: 1.5rem;
}

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

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

.footer-col ul li a {
  color: rgba(255,255,255,0.7);
}

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

.footer-bottom {
  max-width: 1200px;
  margin: 2rem auto 0;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

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

.cookie-banner h3 {
  color: var(--accent);
  margin-bottom: 1rem;
}

.cookie-banner p {
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

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

/* Responsive */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
  nav ul {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--primary);
    padding: 2rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  }
  nav ul.active {
    display: flex;
  }
  .hero h1 {
    font-size: 2.5rem;
  }
  .features-block {
    flex-direction: column;
  }
  .pricing-card.popular {
    transform: none;
  }
  .form-section {
    padding: 2rem;
  }
}

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

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}