:root {
  --primary: #0d3b4c;
  --secondary: #c5a880;
  --bg-light: #fcfaf6;
  --bg-card: #ffffff;
  --text-dark: #2c2c2c;
  --text-light: #ffffff;
  --text-muted: #666666;
  --accent: #d4a373;
  --border: #e6e1da;
  --success: #2e7d32;
  --font-title: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', Helvetica, Arial, sans-serif;
  --shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

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

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

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

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

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

.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--secondary);
  color: var(--primary);
  padding: 10px 20px;
  z-index: 1000;
  transition: top 0.3s;
  font-weight: bold;
}

.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(--bg-card);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 999;
}

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

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

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

nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links {
  display: flex;
  gap: 25px;
  list-style: none;
}

.nav-links a {
  font-weight: 500;
}

.btn-contact-nav {
  background-color: var(--primary);
  color: var(--text-light);
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: 600;
  border: 2px solid var(--primary);
}

.btn-contact-nav:hover {
  background-color: transparent;
  color: var(--primary);
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.burger span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--primary);
  transition: 0.3s;
}

.hero {
  position: relative;
  background-color: var(--primary);
  color: var(--text-light);
  padding: 80px 20px;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: radial-gradient(var(--secondary) 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.15;
  pointer-events: none;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
  position: relative;
  z-index: 2;
}

.hero h1 {
  color: var(--text-light);
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.hero-buttons {
  display: flex;
  gap: 20px;
}

.btn-primary {
  background-color: var(--secondary);
  color: var(--primary);
  padding: 15px 30px;
  border-radius: 5px;
  font-weight: bold;
  display: inline-block;
}

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

.btn-secondary {
  border: 2px solid var(--text-light);
  color: var(--text-light);
  padding: 15px 30px;
  border-radius: 5px;
  font-weight: bold;
  display: inline-block;
}

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

.hero img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  object-fit: cover;
  height: 450px;
}

section {
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  position: relative;
}

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

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

.stat-item {
  background: var(--bg-card);
  padding: 30px;
  border-radius: 8px;
  box-shadow: var(--shadow);
  border-top: 5px solid var(--secondary);
}

.stat-number {
  font-size: 3rem;
  font-weight: bold;
  color: var(--primary);
  font-family: var(--font-title);
  margin-bottom: 10px;
}

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

.step-card {
  background: var(--bg-card);
  padding: 40px 30px;
  border-radius: 8px;
  box-shadow: var(--shadow);
  text-align: center;
  position: relative;
}

.step-num {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--primary);
  color: var(--text-light);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.step-card i {
  font-size: 2.5rem;
  color: var(--secondary);
  margin-bottom: 20px;
}

.step-card h3 {
  margin-bottom: 15px;
  font-size: 1.4rem;
}

.asymmetric-section {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.asymmetric-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.asymmetric-content h2 {
  font-size: 2.3rem;
  margin-bottom: 25px;
}

.asymmetric-content ul {
  list-style: none;
  margin-top: 20px;
}

.asymmetric-content li {
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.asymmetric-content li i {
  color: var(--secondary);
  font-size: 1.4rem;
  margin-top: 4px;
}

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

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

.service-card:hover {
  transform: translateY(-50%);
}

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

.service-info {
  padding: 30px;
}

.service-info h3 {
  font-size: 1.6rem;
  margin-bottom: 15px;
}

.service-info p {
  color: var(--text-muted);
  margin-bottom: 20px;
}

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

.price-card {
  background: var(--bg-card);
  padding: 50px 30px;
  border-radius: 8px;
  box-shadow: var(--shadow);
  text-align: center;
  border: 1px solid var(--border);
  position: relative;
}

.price-card.popular {
  border-color: var(--secondary);
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

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

.price-card h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.price-card .price {
  font-size: 3rem;
  font-family: var(--font-title);
  color: var(--primary);
  margin-bottom: 25px;
  font-weight: bold;
}

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

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

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

.contact-form-section {
  background: var(--bg-card);
  border-radius: 10px;
  padding: 60px;
  box-shadow: var(--shadow);
  max-width: 800px;
  margin: 0 auto 80px;
}

.contact-form-section h2 {
  text-align: center;
  margin-bottom: 40px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.form-full {
  grid-column: span 2;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-weight: 600;
  font-size: 0.95rem;
}

.form-group input, .form-group textarea {
  border: 1px solid var(--border);
  padding: 12px 15px;
  border-radius: 5px;
  font-family: var(--font-body);
  font-size: 1rem;
}

.form-group input:focus, .form-group textarea:focus {
  outline: 2px solid var(--secondary);
}

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

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

.btn-submit {
  background-color: var(--primary);
  color: var(--text-light);
  border: none;
  padding: 15px;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  font-size: 1.1rem;
  transition: 0.3s;
}

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

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

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

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

.accordion-content {
  display: none;
  padding-top: 15px;
  color: var(--text-muted);
}

.trust-layer {
  background-color: #f0ebe1;
  padding: 40px 20px;
  border-top: 2px solid var(--border);
}

.trust-container {
  max-width: 1200px;
  margin: 0 auto;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.trust-container h4 {
  margin-bottom: 15px;
}

.trust-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}

.trust-legal p {
  margin-bottom: 10px;
}

footer {
  background-color: var(--primary);
  color: var(--text-light);
  padding: 50px 20px;
}

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

.footer-links {
  display: flex;
  gap: 20px;
  list-style: none;
}

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

.footer-links a:hover {
  opacity: 1;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--primary);
  color: var(--text-light);
  padding: 20px;
  box-shadow: 0 -5px 25px rgba(0,0,0,0.15);
  z-index: 10000;
  display: none;
}

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

.cookie-text {
  font-size: 0.95rem;
}

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

.cookie-buttons {
  display: flex;
  gap: 15px;
  flex-shrink: 0;
}

.btn-cookie-accept {
  background-color: var(--secondary);
  color: var(--primary);
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
}

.btn-cookie-reject {
  background-color: transparent;
  border: 1px solid var(--text-light);
  color: var(--text-light);
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
}

@media (max-width: 992px) {
  .hero-container, .stats-grid, .steps-grid, .asymmetric-section, .services-grid, .pricing-grid {
    grid-template-columns: 1fr;
  }
  .price-card.popular {
    transform: none;
  }
  .burger {
    display: flex;
  }
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background-color: var(--bg-card);
    padding: 20px;
    box-shadow: var(--shadow);
  }
  .nav-links.active {
    display: flex;
  }
  .btn-contact-nav {
    display: none;
  }
  .cookie-container {
    flex-direction: column;
    align-items: flex-start;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-full {
    grid-column: span 1;
  }
}

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