:root {
  --primary-color: #0B132B;
  --secondary-color: #D4AF37;
  --accent-color: #C5A059;
  --bg-light: #FAF9F6;
  --bg-white: #FFFFFF;
  --text-dark: #1F2937;
  --text-muted: #4B5563;
  --text-light: #F3F4F6;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: var(--font-sans);
  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-serif);
  color: var(--primary-color);
  font-weight: 700;
}

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

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

/* Accessibility: Skip link */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--secondary-color);
  color: var(--primary-color);
  padding: 8px 16px;
  z-index: 1000;
  font-weight: bold;
}

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

:focus-visible {
  outline: 3px solid var(--secondary-color);
  outline-offset: 2px;
}

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

/* Layout */
header {
  background-color: var(--primary-color);
  padding: 20px 40px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

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

.logo-block {
  display: flex;
  align-items: center;
  gap: 12px;
}

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

.brand-name {
  font-family: var(--font-serif);
  color: var(--bg-white);
  font-size: 1.5rem;
  font-weight: 700;
}

.nav-links {
  display: flex;
  gap: 24px;
  align-items: center;
}

.nav-link {
  color: var(--text-light);
  font-weight: 500;
  font-size: 1rem;
}

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

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

/* Hero Section */
.hero {
  position: relative;
  background-color: var(--primary-color);
  color: var(--bg-white);
  padding: 100px 40px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(212,175,55,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
}

.hero-content h1 {
  color: var(--bg-white);
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 24px;
}

.hero-content p {
  font-size: 1.25rem;
  color: var(--text-light);
  margin-bottom: 40px;
  opacity: 0.9;
}

.btn {
  display: inline-block;
  background-color: var(--secondary-color);
  color: var(--primary-color);
  padding: 16px 32px;
  font-weight: 600;
  border-radius: 4px;
  transition: var(--transition-smooth);
  border: 1px solid var(--secondary-color);
  cursor: pointer;
}

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

.btn-outline {
  background-color: transparent;
  color: var(--text-light);
  border: 2px solid var(--text-light);
  margin-left: 16px;
}

.btn-outline:hover {
  background-color: var(--bg-white);
  color: var(--primary-color);
  border-color: var(--bg-white);
}

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

/* Stats */
.stats {
  background-color: var(--bg-white);
  padding: 60px 40px;
  box-shadow: 0 -4px 30px rgba(0,0,0,0.02);
}

.stats-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-item h3 {
  font-size: 3rem;
  color: var(--accent-color);
  margin-bottom: 8px;
}

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

/* Process Section */
.process {
  padding: 80px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

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

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

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

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

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

.process-icon {
  font-size: 2rem;
  color: var(--secondary-color);
  margin-bottom: 16px;
}

.process-card h4 {
  margin-bottom: 12px;
  font-size: 1.25rem;
}

/* Services */
.services-section {
  background-color: var(--bg-white);
  padding: 80px 40px;
}

.services-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.service-card {
  background: var(--bg-light);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
}

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

.service-body {
  padding: 32px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-body h3 {
  margin-bottom: 16px;
  font-size: 1.4rem;
}

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

/* Features (Asymmetric) */
.features {
  padding: 80px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}

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

.features-content h2 {
  font-size: 2.2rem;
  margin-bottom: 24px;
}

.features-list {
  list-style: none;
  margin-top: 24px;
}

.features-list li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 16px;
}

.features-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--secondary-color);
  font-weight: bold;
  font-size: 1.2rem;
}

/* Pricing */
.pricing {
  background-color: var(--bg-white);
  padding: 80px 40px;
}

.pricing-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.pricing-card {
  background: var(--bg-light);
  border: 1px solid rgba(0,0,0,0.05);
  padding: 48px 32px;
  border-radius: 8px;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
}

.pricing-card.popular {
  background-color: var(--bg-white);
  border: 2px solid var(--secondary-color);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  transform: scale(1.03);
}

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

.pricing-card h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.price {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 24px;
}

.pricing-features {
  list-style: none;
  margin-bottom: 32px;
  text-align: left;
  flex-grow: 1;
}

.pricing-features li {
  margin-bottom: 12px;
  padding-left: 24px;
  position: relative;
  font-size: 0.95rem;
}

.pricing-features li::before {
  content: '•';
  color: var(--secondary-color);
  position: absolute;
  left: 0;
  font-size: 1.5rem;
  line-height: 1;
}

/* Form Section */
.form-section {
  padding: 80px 40px;
  max-width: 800px;
  margin: 0 auto;
}

.lead-form {
  background: var(--bg-white);
  padding: 48px;
  border-radius: 8px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--primary-color);
}

.form-group input, .form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: 4px;
  font-family: var(--font-sans);
  font-size: 1rem;
}

.form-group input:focus, .form-group textarea:focus {
  border-color: var(--secondary-color);
  outline: none;
  box-shadow: 0 0 5px rgba(212,175,55,0.2);
}

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

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

.checkbox-group label {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* Trust standards / Trust Block */
.trust-block {
  background-color: var(--bg-light);
  padding: 60px 40px;
  border-top: 1px solid rgba(0,0,0,0.05);
}

.trust-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.trust-item h4 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.trust-item p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Trust Layer (Global) */
.trust-layer {
  background-color: #F0EFEB;
  border-top: 1px solid rgba(0,0,0,0.1);
  padding: 40px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

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

.trust-title {
  font-family: var(--font-serif);
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 12px;
}

/* Footer */
footer {
  background-color: var(--primary-color);
  color: var(--text-light);
  padding: 60px 40px;
  font-size: 0.95rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

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

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

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: -200px;
  left: 0;
  width: 100%;
  background-color: var(--primary-color);
  color: var(--bg-white);
  padding: 24px 40px;
  z-index: 1000;
  box-shadow: 0 -10px 40px rgba(0,0,0,0.2);
  transition: bottom 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.cookie-banner.visible {
  bottom: 0;
}

.cookie-text {
  max-width: 800px;
  font-size: 0.95rem;
}

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

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

.cookie-btn {
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  border: none;
}

.cookie-btn-accept {
  background-color: var(--secondary-color);
  color: var(--primary-color);
}

.cookie-btn-decline {
  background-color: transparent;
  color: var(--bg-white);
  border: 1px solid var(--bg-white);
}

/* FAQ Accordion */
.faq-list {
  max-width: 800px;
  margin: 40px auto;
}

.faq-item {
  background-color: var(--bg-white);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 4px;
  margin-bottom: 16px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 20px;
  font-size: 1.15rem;
  font-weight: 600;
  font-family: var(--font-serif);
  color: var(--primary-color);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--accent-color);
  transition: transform 0.3s;
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  padding: 0 20px;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 20px 20px 20px;
}

/* Contact Page Map */
.map-container {
  margin-top: 40px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

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

/* Custom 404 */
.not-found-section {
  padding: 120px 40px;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.not-found-section h1 {
  font-size: 6rem;
  color: var(--secondary-color);
}

.not-found-section p {
  font-size: 1.25rem;
  margin-bottom: 32px;
  color: var(--text-muted);
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-container, .features-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .pricing-grid, .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-container, .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pricing-card.popular {
    transform: none;
  }
}

@media (max-width: 768px) {
  header {
    padding: 16px 24px;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--primary-color);
    padding: 24px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  }
  .nav-links.active {
    display: flex;
  }
  .hero-content h1 {
    font-size: 2.5rem;
  }
  .pricing-grid, .services-grid, .stats-container, .process-grid, .trust-container {
    grid-template-columns: 1fr;
  }
  .lead-form {
    padding: 24px;
  }
}