:root {
  --primary: #0B192C;
  --accent: #B39252;
  --accent-hover: #9E7E41;
  --bg-light: #F8F9FA;
  --bg-white: #FFFFFF;
  --text-dark: #1E293B;
  --text-light: #64748B;
  --border: #E2E8F0;
  --radius: 8px;
  --font-sans: 'Inter', sans-serif;
  --font-serif: 'Playfair Display', serif;
}

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

body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background-color: var(--bg-white);
  line-height: 1.6;
  font-size: 18px;
}

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

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

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Accessibility */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--accent);
  color: white;
  padding: 10px 20px;
  z-index: 9999;
  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;
}

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

@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;
  }
}

/* Header & Navigation */
header {
  background: var(--primary);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 2px solid var(--accent);
}

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

.logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--bg-white);
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 700;
}

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

nav ul {
  display: flex;
  list-style: none;
  gap: 25px;
}

nav a {
  color: #CBD5E1;
  font-weight: 500;
}

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

.burger {
  display: none;
  background: none;
  border: none;
  color: var(--bg-white);
  font-size: 24px;
  cursor: pointer;
}

/* Hero Section */
.hero {
  position: relative;
  background-size: cover;
  background-position: center;
  color: var(--bg-white);
  padding: 100px 0;
  text-align: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(11, 25, 44, 0.85);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  color: var(--accent);
  font-size: 48px;
  margin-bottom: 20px;
}

.hero p {
  font-size: 20px;
  margin-bottom: 30px;
  color: #E2E8F0;
}

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

.btn:hover {
  background-color: var(--accent-hover);
  color: var(--bg-white);
}

/* Stats Section */
.stats {
  padding: 60px 0;
  background: var(--bg-light);
  text-align: center;
}

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

.stat-card {
  background: var(--bg-white);
  padding: 30px;
  border-radius: var(--radius);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border-top: 4px solid var(--accent);
}

.stat-number {
  font-size: 36px;
  font-family: var(--font-serif);
  color: var(--primary);
  font-weight: bold;
}

/* Steps Section */
.steps {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 50px;
  position: relative;
}

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

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.step-card {
  background: var(--bg-light);
  padding: 30px;
  border-radius: var(--radius);
  text-align: center;
  position: relative;
}

.step-icon {
  font-size: 36px;
  color: var(--accent);
  margin-bottom: 20px;
}

.step-num {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 48px;
  color: rgba(179, 146, 82, 0.15);
  font-weight: 900;
}

/* Services Grid */
.services-section {
  padding: 80px 0;
  background: var(--bg-light);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.service-card {
  background: var(--bg-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.service-img {
  height: 200px;
  background-size: cover;
  background-position: center;
}

.service-content {
  padding: 25px;
}

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

/* Features Block */
.features-block {
  padding: 80px 0;
}

.feature-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

@media (max-width: 768px) {
  .feature-layout {
    grid-template-columns: 1fr;
  }
}

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

.feature-list {
  list-style: none;
  margin-top: 20px;
}

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

.feature-list li i {
  position: absolute;
  left: 0;
  top: 5px;
  color: var(--accent);
}

/* Pricing Table */
.pricing {
  padding: 80px 0;
  background: var(--bg-light);
}

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

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

.price-card.featured {
  border: 3px solid var(--accent);
  transform: scale(1.03);
  box-shadow: 0 10px 20px rgba(179, 146, 82, 0.15);
}

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

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

.price-features {
  list-style: none;
  margin: 30px 0;
  flex-grow: 1;
}

.price-features li {
  margin-bottom: 12px;
  font-size: 16px;
}

/* Form Section */
.form-section {
  padding: 80px 0;
}

.form-wrapper {
  max-width: 650px;
  margin: 0 auto;
  background: var(--bg-light);
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

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

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

.form-control {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 16px;
}

.form-control:focus {
  outline: none;
  border-color: var(--accent);
}

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

.checkbox-group input {
  margin-top: 5px;
}

/* Accordion (FAQ Page) */
.faq-section {
  padding: 80px 0;
}

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

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

.accordion-content {
  display: none;
  padding: 15px 0 5px;
  color: var(--text-light);
}

/* Trust Layer & Footer */
.trust-layer {
  background: var(--bg-light);
  padding: 40px 0;
  border-top: 1px solid var(--border);
  font-size: 14px;
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  text-align: center;
}

footer {
  background: var(--primary);
  color: #94A3B8;
  padding: 40px 0;
  font-size: 15px;
}

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

.footer-col h4 {
  color: var(--bg-white);
  margin-bottom: 20px;
}

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

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

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

.footer-col a:hover {
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  text-align: center;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #0F172A;
  color: var(--bg-white);
  padding: 20px;
  z-index: 10000;
  display: none;
  box-shadow: 0 -4px 10px rgba(0,0,0,0.2);
}

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

.cookie-text {
  flex: 1;
  min-width: 280px;
  font-size: 14px;
}

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

.btn-cookie-accept {
  background: var(--accent);
  color: var(--primary);
  border: none;
  padding: 8px 20px;
  font-weight: bold;
  border-radius: var(--radius);
  cursor: pointer;
}

.btn-cookie-reject {
  background: transparent;
  color: var(--bg-white);
  border: 1px solid #475569;
  padding: 8px 20px;
  border-radius: var(--radius);
  cursor: pointer;
}

/* Mobile Nav Active states */
@media (max-width: 768px) {
  nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--primary);
    border-bottom: 1px solid var(--accent);
  }
  nav.active {
    display: block;
  }
  nav ul {
    flex-direction: column;
    padding: 20px;
  }
  .burger {
    display: block;
  }
}