:root {
  --primary: #0B132B;
  --secondary: #C5A880;
  --accent: #E0A96D;
  --bg-light: #FDFBF7;
  --text-dark: #1C2541;
  --text-light: #F4F5F6;
  --border: #D8D2C4;
  --font-display: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
}

* {
  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.7;
  font-size: 1.15rem;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--primary);
  line-height: 1.3;
}

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

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

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

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

/* Header & Nav */
header {
  background-color: var(--primary);
  color: var(--text-light);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

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

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

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

.nav-menu {
  display: flex;
  gap: 25px;
  list-style: none;
  align-items: center;
}

.nav-menu a {
  color: var(--text-light);
  font-weight: 500;
  font-size: 1.05rem;
}

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

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

/* Hero Section */
.hero {
  background-image: linear-gradient(rgba(11, 19, 43, 0.85), rgba(11, 19, 43, 0.85)), url('images/hero.jpg');
  background-size: cover;
  background-position: center;
  color: var(--text-light);
  padding: 120px 20px;
  text-align: center;
}

.hero-content {
  max-width: 850px;
  margin: 0 auto;
}

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

.hero p {
  font-size: 1.35rem;
  margin-bottom: 35px;
  color: #E2E8F0;
}

/* Buttons */
.btn {
  display: inline-block;
  background-color: var(--secondary);
  color: var(--primary);
  padding: 14px 30px;
  font-weight: 700;
  border-radius: 4px;
  border: 2px solid var(--secondary);
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

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

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

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

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

.section-title {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 15px;
}

.section-subtitle {
  text-align: center;
  color: #64748B;
  margin-bottom: 50px;
  font-size: 1.2rem;
}

/* Stats */
.stats {
  background-color: #F1ECE4;
  padding: 50px 20px;
  text-align: center;
}

.stats-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.stat-item h3 {
  font-size: 2.8rem;
  color: var(--secondary);
  margin-bottom: 5px;
}

.stat-item p {
  font-weight: 600;
  color: var(--primary);
}

/* Step Plan */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.step-card {
  background: white;
  padding: 40px 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  border-top: 5px solid var(--secondary);
  text-align: center;
}

.step-card .step-num {
  font-size: 2.5rem;
  font-family: var(--font-display);
  color: var(--secondary);
  margin-bottom: 15px;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 35px;
}

.service-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
}

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

.service-card-content {
  padding: 30px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

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

.service-card p {
  color: #475569;
  margin-bottom: 20px;
  font-size: 1.05rem;
}

/* Split Feature */
.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.feature-split img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Pricing Grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  align-items: stretch;
}

.pricing-card {
  background: white;
  padding: 45px 35px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  border: 1px solid var(--border);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.pricing-card.popular {
  border-color: var(--secondary);
  box-shadow: 0 10px 30px rgba(197, 168, 128, 0.2);
}

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

.pricing-card h3 {
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.pricing-price {
  font-size: 2.5rem;
  font-family: var(--font-display);
  color: var(--primary);
  margin-bottom: 25px;
}

.pricing-card ul {
  list-style: none;
  margin-bottom: 35px;
}

.pricing-card ul li {
  margin-bottom: 12px;
  padding-left: 25px;
  position: relative;
}

.pricing-card ul li::before {
  content: "✔";
  color: var(--secondary);
  position: absolute;
  left: 0;
}

/* Lead Form */
.form-section {
  background-color: var(--primary);
  color: var(--text-light);
  border-radius: 8px;
  padding: 60px 40px;
  max-width: 800px;
  margin: 60px auto;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.form-section h2 {
  color: var(--text-light);
  margin-bottom: 15px;
}

.lead-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 30px;
}

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

.lead-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  font-size: 1rem;
}

.lead-form input, .lead-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #475569;
  background-color: #1C2541;
  color: var(--text-light);
  border-radius: 4px;
  font-size: 1rem;
}

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

.consent-container {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.consent-container input {
  width: auto;
  margin-top: 5px;
}

.lead-form .btn {
  width: 100%;
}

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

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

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #475569;
}

.faq-answer.open {
  max-height: 500px;
  padding-top: 15px;
}

/* Trust Layer & Footer */
.trust-layer {
  background-color: #E2E8F0;
  padding: 40px 20px;
  border-top: 2px solid var(--border);
}

.trust-content {
  max-width: 1200px;
  margin: 0 auto;
  font-size: 0.95rem;
  color: #475569;
  text-align: center;
}

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

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h4 {
  color: var(--text-light);
  margin-bottom: 20px;
  font-size: 1.2rem;
}

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

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #94A3B8;
}

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

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid #1C2541;
  padding-top: 30px;
  text-align: center;
  font-size: 0.9rem;
  color: #94A3B8;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  max-width: 450px;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
  padding: 25px;
  z-index: 9999;
  display: none;
  border: 1px solid var(--border);
}

.cookie-banner h4 {
  margin-bottom: 10px;
}

.cookie-banner p {
  font-size: 0.95rem;
  color: #475569;
  margin-bottom: 20px;
}

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

.cookie-buttons button {
  flex: 1;
  padding: 10px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
}

.cookie-accept {
  background-color: var(--primary);
  color: white;
  border: none;
}

.cookie-decline {
  background-color: transparent;
  border: 1px solid var(--border);
  color: var(--text-dark);
}

/* Responsive Utilities */
@media (max-width: 900px) {
  .hero h1 {
    font-size: 2.2rem;
  }
  .feature-split {
    grid-template-columns: 1fr;
  }
  .lead-form {
    grid-template-columns: 1fr;
  }
  .lead-form .full-width {
    grid-column: span 1;
  }
  .burger {
    display: block;
  }
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--primary);
    flex-direction: column;
    padding: 30px;
    gap: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  }
  .nav-menu.active {
    display: flex;
  }
}

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