:root {
  --primary: #0f172a;
  --primary-light: #1e293b;
  --accent: #b45309;
  --accent-hover: #92400e;
  --bg-light: #f8fafc;
  --bg-white: #ffffff;
  --text-dark: #0f172a;
  --text-muted: #475569;
  --text-light: #f8fafc;
  --border: #e2e8f0;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Montserrat', sans-serif;
  --transition: all 0.3s ease;
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
}

* {
  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: 1rem;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--accent);
  color: var(--text-light);
  padding: 10px;
  z-index: 100;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 0;
}

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

/* Header */
.site-header {
  background-color: var(--bg-white);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 90;
}
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}
.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--primary);
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: bold;
}
.header-logo {
  height: 40px;
  margin-right: 10px;
}
.nav-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}
.nav-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-weight: 500;
  transition: var(--transition);
}
.nav-links a:hover, .nav-links a:focus {
  color: var(--accent);
}
.burger {
  display: none;
  cursor: pointer;
}
.burger div {
  width: 25px;
  height: 3px;
  background-color: var(--primary);
  margin: 5px;
  transition: var(--transition);
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    right: 0;
    height: 92vh;
    top: 8vh;
    background-color: var(--bg-white);
    display: flex;
    flex-direction: column;
    width: 70%;
    transform: translateX(100%);
    transition: transform 0.4s ease-in;
    box-shadow: -2px 0 5px rgba(0,0,0,0.05);
    padding-top: 3rem;
    gap: 2rem;
  }
  .nav-links.active {
    transform: translateX(0%);
  }
  .burger {
    display: block;
  }
  .burger.toggle .line1 { transform: rotate(-45deg) translate(-5px, 6px); }
  .burger.toggle .line2 { opacity: 0; }
  .burger.toggle .line3 { transform: rotate(45deg) translate(-5px, -6px); }
}

/* UI Elements */
.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  background-color: var(--accent);
  color: var(--text-light);
  border: none;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}
.btn:hover, .btn:focus {
  background-color: var(--accent-hover);
}
.btn-secondary {
  background-color: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}
.btn-secondary:hover, .btn-secondary:focus {
  background-color: var(--primary);
  color: var(--text-light);
}

/* Sections */
.hero {
  background: linear-gradient(rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.8)), url('images/hero.jpg') no-repeat center center/cover;
  color: var(--text-light);
  padding: 8rem 0;
  text-align: center;
}
.hero h1 {
  font-family: var(--font-heading);
  font-size: 3rem;
  margin-bottom: 1.5rem;
}
.hero p {
  font-size: 1.25rem;
  max-width: 800px;
  margin: 0 auto 2.5rem auto;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--primary);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  text-align: center;
}
.stat-card {
  background-color: var(--bg-white);
  padding: 2.5rem;
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.stat-number {
  font-size: 2.75rem;
  font-weight: bold;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}
.step-card {
  background-color: var(--bg-white);
  padding: 2.5rem;
  border-radius: 8px;
  box-shadow: var(--shadow);
  position: relative;
}
.step-num {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 2.5rem;
  font-weight: bold;
  color: rgba(180, 83, 9, 0.15);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.service-card {
  background-color: var(--bg-white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.service-card:hover {
  transform: translateY(-5px);
}
.service-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.service-content {
  padding: 2rem;
}
.service-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
  color: var(--primary);
}

.feature-block {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
  align-items: center;
}
.feature-img-wrapper {
  flex: 1 1 450px;
}
.feature-img {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.feature-text {
  flex: 1 1 450px;
}
.feature-text h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: 1rem;
}
.feature-list {
  list-style: none;
  margin-top: 1.5rem;
}
.feature-list li {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.feature-list i {
  color: var(--accent);
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  align-items: stretch;
}
.price-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}
.price-card.featured {
  border: 2.5px solid var(--accent);
  transform: scale(1.03);
  box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.1);
}
.badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: var(--accent);
  color: var(--text-light);
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: bold;
}
.price-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-family: var(--font-heading);
}
.price-amount {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

/* Form Section */
.form-section {
  background-color: var(--primary);
  color: var(--text-light);
  padding: 5rem 0;
}
.form-section h2 {
  color: var(--text-light);
}
.contact-form {
  max-width: 600px;
  margin: 0 auto;
  background-color: var(--primary-light);
  padding: 3rem;
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.form-group {
  margin-bottom: 1.5rem;
}
.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.form-control {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--primary);
  border-radius: 4px;
  background-color: var(--bg-light);
  color: var(--text-dark);
  font-family: var(--font-body);
}
.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.checkbox-group input {
  margin-top: 0.25rem;
}
.checkbox-group label {
  font-size: 0.875rem;
}
.checkbox-group a {
  color: var(--accent);
  text-decoration: underline;
}

/* Accordion FAQ */
details.faq-item {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-bottom: 1.25rem;
  padding: 1.25rem;
  transition: var(--transition);
}
details.faq-item[open] {
  border-color: var(--accent);
  box-shadow: var(--shadow);
}
summary.faq-question {
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
summary.faq-question::-webkit-details-marker {
  display: none;
}
summary.faq-question::after {
  content: '\f078';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  transition: transform 0.3s;
}
details[open] summary.faq-question::after {
  transform: rotate(180deg);
}
.faq-answer {
  margin-top: 1rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Trust Layer */
.trust-layer {
  background-color: #f1f5f9;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 3rem 0;
}
.trust-box {
  text-align: center;
  max-width: 850px;
  margin: 0 auto;
}
.trust-box h4 {
  color: var(--primary);
  margin-bottom: 0.75rem;
}
.trust-disclaimer {
  font-style: italic;
  margin: 1rem 0;
}

/* Footer */
.site-footer {
  background-color: var(--primary);
  color: var(--text-light);
  padding: 4rem 0 2rem 0;
}
.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
}
.footer-brand h4, .footer-links h5, .footer-legal h5 {
  margin-bottom: 1.25rem;
  font-family: var(--font-heading);
}
.footer-brand p {
  color: #94a3b8;
}
.footer-links a, .footer-legal a {
  display: block;
  color: #94a3b8;
  text-decoration: none;
  margin-bottom: 0.75rem;
  transition: var(--transition);
}
.footer-links a:hover, .footer-legal a:hover {
  color: var(--accent);
}
.footer-bottom {
  border-top: 1px solid #334155;
  margin-top: 3rem;
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.75rem;
  color: #94a3b8;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background-color: var(--primary);
  color: var(--text-light);
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 10px 25px -5px rgba(0,0,0,0.4);
  z-index: 100;
  display: none;
}
.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.cookie-text {
  font-size: 0.875rem;
}
.cookie-buttons {
  display: flex;
  gap: 1rem;
}

@media (min-width: 768px) {
  .cookie-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-delay: -1ms !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    background-attachment: initial !important;
    scroll-behavior: auto !important;
    transition-duration: 0s !important;
    transition-delay: 0s !important;
  }
}