:root {
  --primary: #1e293b;
  --primary-light: #334155;
  --accent: #b45309;
  --accent-light: #d97706;
  --bg-warm: #f8f6f0;
  --text-dark: #1c1917;
  --text-muted: #6b7280;
  --white: #ffffff;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
}

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

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

.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--accent);
  color: var(--white);
  padding: 10px 20px;
  z-index: 9999;
  text-decoration: none;
  font-weight: bold;
  transition: top 0.2s;
}
.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(--primary);
  color: var(--white);
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
}

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

.logo-area {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--white);
}

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

.logo-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 1.5rem;
  align-items: center;
}

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

nav a:hover, nav a:focus {
  color: var(--accent-light);
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

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

.mobile-nav {
  display: none;
  background-color: var(--primary-light);
  padding: 1rem;
}

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

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

main {
  min-height: 80vh;
}

/* Hero Section */
.hero {
  position: relative;
  background-color: var(--primary);
  color: var(--white);
  padding: 5rem 2rem;
  overflow: hidden;
}

.hero-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.05;
  background-image: radial-gradient(var(--accent) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

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

.hero-content h1 {
  font-family: var(--font-serif);
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: #cbd5e1;
}

.cta-button {
  display: inline-block;
  background-color: var(--accent);
  color: var(--white);
  padding: 1rem 2rem;
  text-decoration: none;
  font-weight: 600;
  border-radius: 4px;
  transition: background-color 0.3s;
  border: none;
  cursor: pointer;
}

.cta-button:hover, .cta-button:focus {
  background-color: var(--accent-light);
  outline: 3px solid var(--white);
}

.hero-image img {
  width: 100%;
  max-height: 450px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3);
}

/* Stats Section */
.stats {
  background-color: var(--white);
  padding: 3rem 2rem;
}

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

.stat-item h3 {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--accent);
}

/* How It Works */
.how-it-works {
  padding: 5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

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

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

.step-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
  text-align: center;
  border-top: 4px solid var(--primary);
}

.step-number {
  font-size: 3rem;
  color: var(--accent);
  font-family: var(--font-serif);
  margin-bottom: 1rem;
}

/* General Layouts */
.content-section {
  padding: 5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.asymmetric-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.asymmetric-grid.reverse {
  direction: rtl;
}

.asymmetric-grid.reverse > * {
  direction: ltr;
}

.asymmetric-grid img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
}

.bullet-list {
  list-style: none;
  margin-top: 1.5rem;
}

.bullet-list li {
  margin-bottom: 1rem;
  position: relative;
  padding-left: 2rem;
}

.bullet-list li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--accent);
}

/* Services section */
.services-section {
  background-color: var(--white);
  padding: 5rem 2rem;
}

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

.service-card {
  background: var(--bg-warm);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
  transition: transform 0.3s;
}

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

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

.service-body {
  padding: 2rem;
}

.service-body h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

/* Pricing */
.pricing {
  padding: 5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

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

.price-card {
  background: var(--white);
  border-radius: 8px;
  padding: 3rem 2rem;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
}

.price-card.featured {
  border: 3px solid var(--accent);
  transform: scale(1.05);
  z-index: 10;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.popular-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--accent);
  color: var(--white);
  padding: 0.25rem 1rem;
  font-size: 0.875rem;
  font-weight: bold;
  text-transform: uppercase;
  border-radius: 9999px;
}

.price-amount {
  font-family: var(--font-serif);
  font-size: 3rem;
  color: var(--primary);
  margin: 1.5rem 0;
}

.price-card ul {
  list-style: none;
  margin-bottom: 2rem;
  text-align: left;
}

.price-card ul li {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.price-card ul li::before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--accent);
}

.price-card .cta-button {
  margin-top: auto;
  width: 100%;
}

/* Form Section */
.form-section {
  background-color: var(--primary);
  color: var(--white);
  padding: 5rem 2rem;
}

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

.form-title {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 1rem;
}

.form-subtitle {
  text-align: center;
  color: #cbd5e1;
  margin-bottom: 3rem;
}

form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

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

label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

input, textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #475569;
  background-color: #1e293b;
  color: var(--white);
  border-radius: 4px;
  font-size: 1rem;
}

input:focus, textarea:focus {
  outline: 2px solid var(--accent);
  background-color: #334155;
}

.checkbox-area {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.checkbox-area input {
  width: auto;
  margin-top: 0.25rem;
}

.checkbox-area label {
  font-size: 0.95rem;
  color: #cbd5e1;
}

.checkbox-area a {
  color: var(--white);
}

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

.faq-item {
  background: var(--white);
  margin-bottom: 1rem;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

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

.faq-question i {
  transition: transform 0.3s;
}

.faq-question.active i {
  transform: rotate(180deg);
}

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

.faq-answer p {
  padding-bottom: 1.5rem;
  color: var(--text-muted);
}

/* Trust Layer */
.trust-layer {
  background-color: #f1f5f9;
  border-top: 1px solid #cbd5e1;
  border-bottom: 1px solid #cbd5e1;
  padding: 3rem 2rem;
}

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

.trust-layer h4 {
  font-family: var(--font-serif);
  color: var(--primary);
  margin-bottom: 1rem;
}

.trust-links {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.trust-links a {
  color: var(--accent);
  text-decoration: none;
}

/* Footer */
footer {
  background-color: var(--primary);
  color: var(--white);
  padding: 3rem 2rem;
}

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

.footer-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.footer-links a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 0.95rem;
}

.footer-copy {
  font-size: 0.9rem;
  color: #94a3b8;
  width: 100%;
  text-align: center;
  border-top: 1px solid #334155;
  padding-top: 1.5rem;
  margin-top: 1.5rem;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--primary);
  color: var(--white);
  padding: 1.5rem 2rem;
  box-shadow: 0 -10px 15px -3px rgba(0,0,0,0.3);
  z-index: 9999;
  display: none;
}

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

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

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

.cookie-buttons {
  display: flex;
  gap: 1rem;
}

.cookie-btn {
  background-color: var(--accent);
  color: var(--white);
  border: none;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s;
}

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

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

.cookie-btn.secondary:hover {
  background-color: rgba(255,255,255,0.1);
}

/* Responsive */
@media (max-width: 968px) {
  .hero-container, .asymmetric-grid, .steps-grid, .services-grid, .pricing-grid {
    grid-template-columns: 1fr;
  }
  .pricing-grid {
    gap: 3rem;
  }
  .price-card.featured {
    transform: none;
  }
  .stats-container {
    grid-template-columns: 1fr;
  }
  .burger-menu {
    display: block;
  }
  nav {
    display: none;
  }
  form {
    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;
  }
}