:root {
  --primary: #1a2b49;
  --primary-light: #2c3e61;
  --accent: #c5a880;
  --accent-hover: #b4966e;
  --bg-main: #fcfbfa;
  --bg-card: #ffffff;
  --bg-alt: #f4f1eb;
  --text-main: #2d3748;
  --text-muted: #718096;
  --text-light: #ffffff;
  --border: #e2e8f0;
  --font-serif: 'Lora', Georgia, serif;
  --font-sans: 'Inter', system-ui, sans-serif;
}

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

body {
  font-family: var(--font-sans);
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: var(--font-serif);
  color: var(--primary);
  font-weight: 600;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

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

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

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 10px;
}

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

.logo-text {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 1px;
}

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

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

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

/* Hero */
.hero {
  background: linear-gradient(rgba(26,43,73,0.85), rgba(26,43,73,0.85)), url('images/hero.jpg') no-repeat center center/cover;
  color: var(--text-light);
  padding: 100px 0;
  text-align: center;
}

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

.hero p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 30px auto;
  color: var(--bg-alt);
}

.btn {
  display: inline-block;
  background-color: var(--accent);
  color: var(--primary);
  padding: 12px 30px;
  border-radius: 4px;
  font-weight: bold;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.btn:hover {
  background-color: var(--accent-hover);
  transform: translateY(-2px);
}

/* Stats */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
  margin-top: -50px;
  position: relative;
  z-index: 10;
}

.stat-card {
  background: var(--bg-card);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.stat-num {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--accent);
  font-family: var(--font-serif);
}

/* Sections */
section {
  padding: 60px 0;
}

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

.section-title h2 {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.section-title p {
  color: var(--text-muted);
}

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

.step-card {
  text-align: center;
  background: var(--bg-card);
  padding: 25px;
  border-radius: 6px;
  border: 1px solid var(--border);
}

.step-card i {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 15px;
}

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

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

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

.service-body {
  padding: 25px;
  flex-grow: 1;
}

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

/* Asymmetric Feature Block */
.feature-block {
  display: flex;
  align-items: center;
  gap: 50px;
}

.feature-img {
  width: 50%;
  border-radius: 8px;
}

.feature-text {
  width: 50%;
}

.feature-text h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.feature-text ul {
  list-style: none;
}

.feature-text li {
  margin-bottom: 15px;
  position: relative;
  padding-left: 25px;
}

.feature-text li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: bold;
}

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

.price-card {
  background: var(--bg-card);
  border-radius: 8px;
  padding: 40px 30px;
  text-align: center;
  border: 1px solid var(--border);
  position: relative;
}

.price-card.popular {
  border: 2px solid var(--accent);
  box-shadow: 0 4px 20px rgba(197,168,128,0.25);
  transform: scale(1.03);
}

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

.price-val {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--primary);
  font-family: var(--font-serif);
  margin: 20px 0;
}

/* Form */
.form-container {
  background: var(--bg-alt);
  padding: 40px;
  border-radius: 8px;
  max-width: 600px;
  margin: 0 auto;
}

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

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

.form-group input, .form-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: 4px;
}

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

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

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

/* Accordion FAQ */
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  margin-bottom: 15px;
  border-radius: 6px;
  overflow: hidden;
}

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

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

.faq-item.active .faq-content {
  padding: 20px;
  max-height: 300px;
}

/* Trust Layer */
.trust-layer {
  background-color: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 40px 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.trust-box h4 {
  color: var(--primary);
  margin-bottom: 10px;
}

/* Footer */
footer {
  background-color: var(--primary);
  color: var(--text-light);
  padding: 40px 0;
}

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

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

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

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  max-width: 400px;
  background: var(--bg-card);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  padding: 25px;
  z-index: 1000;
  border: 1px solid var(--border);
  transform: translateY(150%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-banner p {
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.cookie-btns {
  display: flex;
  gap: 10px;
}

/* Custom visual decoration: Premium Grid Pattern */
.visual-grid-bg {
  background-image: radial-gradient(var(--accent) 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.1;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}

/* Responsive */
@media (max-width: 768px) {
  .burger {
    display: block;
  }
  
  nav ul {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--primary);
    padding: 20px 0;
  }
  
  nav ul.active {
    display: flex;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 20px;
  }
  
  .steps-grid, .services-grid, .pricing-grid, .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .feature-block {
    flex-direction: column;
  }
  
  .feature-img, .feature-text {
    width: 100%;
  }
  
  .cookie-banner {
    left: 10px;
    right: 10px;
    bottom: 10px;
    max-width: none;
  }
}

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