:root {
  --primary: #0B192C;
  --accent: #D4AF37;
  --accent-hover: #AA841C;
  --bg-light: #F9F9FB;
  --text-dark: #1E2022;
  --text-muted: #626466;
  --white: #FFFFFF;
  --transition: all 0.3s ease;
  --border-radius: 8px;
}

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

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background-color: var(--white);
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--primary);
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--accent);
  color: var(--primary);
  padding: 10px;
  z-index: 9999;
  font-weight: bold;
  text-decoration: none;
  transition: top 0.3s;
}

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

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

header {
  background: var(--primary);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  text-decoration: none;
}

.logo-wrapper img {
  width: 45px;
  height: 45px;
}

.logo-text {
  font-size: 24px;
  font-family: 'Playfair Display', serif;
  font-weight: bold;
}

.logo-text span {
  color: var(--accent);
}

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

nav a {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
}

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

.burger-menu {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 24px;
  cursor: pointer;
}

.mobile-nav {
  display: none;
  background: var(--primary);
  padding: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.mobile-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.mobile-nav a {
  color: var(--white);
  text-decoration: none;
  display: block;
}

main {
  min-height: calc(100vh - 300px);
}

.hero {
  padding: 80px 20px;
  background: linear-gradient(135deg, #0B192C 0%, #1E3E62 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23ffffff' fill-opacity='1' d='M0,192L80,181.3C160,171,320,149,480,160C640,171,800,213,960,218.7C1120,224,1280,192,1360,176L1440,160L1440,320L1360,320C1280,320,1120,320,960,320C800,320,640,320,480,320C320,320,160,320,80,320L0,320Z'%3E%3C/path%3E%3C/svg%3E") no-repeat bottom/cover;
}

.hero-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero-content h1 {
  color: var(--accent);
  font-size: 46px;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-content p {
  font-size: 18px;
  margin-bottom: 30px;
  color: #E2E8F0;
}

.btn {
  display: inline-block;
  padding: 14px 28px;
  background-color: var(--accent);
  color: var(--primary);
  border: none;
  border-radius: var(--border-radius);
  text-decoration: none;
  font-weight: bold;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

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

.hero-image img {
  width: 100%;
  border-radius: var(--border-radius);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

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

.section-bg {
  background-color: var(--bg-light);
  padding: 80px 0;
}

.section-bg .section {
  padding: 0 20px;
}

.section-title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 40px;
}

.section-title span {
  color: var(--accent);
}

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

.stat-card {
  padding: 30px;
  background: var(--bg-light);
  border-radius: var(--border-radius);
  border-bottom: 4px solid var(--accent);
}

.stat-num {
  font-size: 38px;
  font-weight: bold;
  color: var(--primary);
  margin-bottom: 10px;
}

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

.step-card {
  padding: 30px;
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  position: relative;
}

.step-card i {
  font-size: 36px;
  color: var(--accent);
  margin-bottom: 20px;
}

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

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

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

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

.service-info {
  padding: 25px;
}

.service-info h3 {
  margin-bottom: 15px;
}

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

.asymmetric-block img {
  width: 100%;
  border-radius: var(--border-radius);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.asymmetric-content h3 {
  font-size: 28px;
  margin-bottom: 20px;
}

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

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

.asymmetric-content li i {
  color: var(--accent);
}

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

.price-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: var(--border-radius);
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid #E2E8F0;
  position: relative;
}

.price-card.featured {
  border: 2px solid var(--accent);
  box-shadow: 0 20px 40px rgba(11,25,44,0.1);
}

.featured-label {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--primary);
  padding: 4px 15px;
  font-size: 12px;
  font-weight: bold;
  border-radius: 20px;
  text-transform: uppercase;
}

.price-amount {
  font-size: 42px;
  font-weight: bold;
  color: var(--primary);
  margin: 20px 0;
}

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

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

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

.form-section {
  max-width: 700px;
  margin: 0 auto;
  background: var(--white);
  padding: 50px 40px;
  border-radius: var(--border-radius);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
}

.form-group input, .form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #CBD5E1;
  border-radius: var(--border-radius);
  font-family: inherit;
}

.form-group input:focus, .form-group textarea:focus {
  border-color: var(--accent);
  outline: none;
}

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

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

.faq-teaser {
  text-align: center;
  margin-top: 40px;
}

.accordion-item {
  background: var(--white);
  border: 1px solid #E2E8F0;
  border-radius: var(--border-radius);
  margin-bottom: 15px;
  overflow: hidden;
}

.accordion-header {
  width: 100%;
  background: none;
  border: none;
  padding: 20px;
  text-align: left;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: inherit;
  color: var(--primary);
}

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

.trust-layer {
  background-color: var(--bg-light);
  border-top: 1px solid #E2E8F0;
  padding: 40px 20px;
  text-align: center;
}

.trust-container {
  max-width: 1200px;
  margin: 0 auto;
}

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

.trust-container p {
  color: var(--text-muted);
  font-size: 14px;
}

footer {
  background: var(--primary);
  color: var(--white);
  padding: 60px 20px 30px 20px;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 40px;
}

.footer-brand h4 {
  color: var(--accent);
  font-size: 24px;
  margin-bottom: 15px;
}

.footer-links h5 {
  color: var(--white);
  font-size: 18px;
  margin-bottom: 20px;
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: #A0AEC0;
  text-decoration: none;
  transition: var(--transition);
}

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

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 30px;
  text-align: center;
  font-size: 14px;
  color: #A0AEC0;
}

.cookie-banner {
  display: none;
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: var(--primary);
  color: var(--white);
  padding: 25px;
  border-radius: var(--border-radius);
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
  z-index: 10000;
  max-width: 600px;
}

.cookie-buttons {
  margin-top: 20px;
  display: flex;
  gap: 15px;
}

.btn-cookie-deny {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--white);
  padding: 10px 20px;
  border-radius: var(--border-radius);
  cursor: pointer;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
}

.contact-info-list {
  list-style: none;
  margin: 30px 0;
}

.contact-info-list li {
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.contact-info-list i {
  color: var(--accent);
  font-size: 20px;
  margin-top: 4px;
}

.map-container {
  margin-top: 30px;
  height: 350px;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.error-page {
  text-align: center;
  padding: 120px 20px;
}

.error-page h1 {
  font-size: 120px;
  color: var(--accent);
  line-height: 1;
}

.legal-layout {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 20px;
}

.legal-layout h1 {
  font-size: 36px;
  margin-bottom: 30px;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 15px;
}

.legal-layout h2 {
  font-size: 24px;
  margin: 30px 0 15px 0;
}

.legal-layout p, .legal-layout ul {
  margin-bottom: 20px;
  color: var(--text-dark);
}

@media (max-width: 1024px) {
  .hero-grid, .services-grid, .pricing-grid, .footer-grid, .asymmetric-block, .contact-layout {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  nav {
    display: none;
  }
  .burger-menu {
    display: block;
  }
  .steps-grid {
    grid-template-columns: 1fr;
  }
  .hero-content h1 {
    font-size: 34px;
  }
  .stats-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}