:root {
  --primary: #1e293b;
  --primary-light: #334155;
  --accent: #c5a880;
  --accent-hover: #b3966e;
  --bg-light: #fcfaf7;
  --bg-white: #ffffff;
  --text-dark: #0f172a;
  --text-muted: #64748b;
  --border: #e2e8f0;
  --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-light);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--accent);
  color: var(--primary);
  padding: 10px 20px;
  z-index: 9999;
  transition: top 0.2s;
  text-decoration: none;
  font-weight: bold;
}

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

h1, h2, h3, h4 {
  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.2s;
}

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

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

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

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

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

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

.nav-links {
  display: flex;
  gap: 25px;
  align-items: center;
}

.nav-links a {
  color: var(--bg-white);
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

.btn-cta {
  background-color: var(--accent);
  color: var(--primary) !important;
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: bold;
  transition: background-color 0.2s, transform 0.2s;
}

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

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

/* Mobile Nav */
.mobile-nav {
  display: none;
  background-color: var(--primary-light);
  padding: 20px;
  border-bottom: 2px solid var(--accent);
}

.mobile-nav a {
  display: block;
  color: var(--bg-white);
  padding: 12px 0;
  font-size: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-nav a:last-child {
  border-bottom: none;
}

/* Hero Section */
.hero {
  background-color: var(--primary);
  color: var(--bg-white);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.hero-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c5a880' fill-opacity='0.4'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  color: var(--bg-white);
  font-size: 44px;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 18px;
  color: var(--border);
  margin-bottom: 30px;
}

.hero-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  border: 1px solid var(--accent);
}

/* Stats Section */
.stats {
  background-color: var(--bg-white);
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: center;
}

.stat-card h3 {
  font-size: 36px;
  color: var(--accent);
  margin-bottom: 5px;
}

.stat-card p {
  font-size: 14px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

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

.section-title h2 {
  font-size: 36px;
  margin-bottom: 15px;
}

.section-title p {
  color: var(--text-muted);
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto;
}

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

.step-card {
  background: var(--bg-white);
  padding: 30px;
  border-radius: 6px;
  border: 1px solid var(--border);
  position: relative;
  transition: transform 0.3s;
}

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

.step-num {
  font-family: var(--font-serif);
  font-size: 48px;
  color: rgba(197, 168, 128, 0.2);
  position: absolute;
  top: 10px;
  right: 20px;
  font-weight: bold;
}

.step-card i {
  font-size: 32px;
  color: var(--accent);
  margin-bottom: 20px;
}

.step-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.step-card p {
  font-size: 15px;
  color: var(--text-muted);
}

/* Trust block */
.trust-principles {
  background-color: var(--primary-light);
  color: var(--bg-white);
  padding: 60px 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.trust-left h2 {
  color: var(--bg-white);
  font-size: 32px;
  margin-bottom: 20px;
}

.trust-left p {
  color: var(--border);
  margin-bottom: 20px;
}

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

.principle-item {
  display: flex;
  gap: 15px;
}

.principle-item i {
  color: var(--accent);
  font-size: 24px;
  margin-top: 5px;
}

.principle-item h4 {
  color: var(--bg-white);
  font-size: 18px;
  margin-bottom: 5px;
}

.principle-item p {
  color: var(--border);
  font-size: 14px;
}

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

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

.service-card {
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  background: var(--bg-light);
  transition: box-shadow 0.3s;
}

.service-card:hover {
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

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

.service-body {
  padding: 25px;
}

.service-body h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.service-body p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

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

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

.features-img img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.features-content h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.features-content ul {
  list-style: none;
  margin-top: 20px;
}

.features-content ul li {
  margin-bottom: 15px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.features-content ul li i {
  color: var(--accent);
  margin-top: 5px;
}

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

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

.pricing-card {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 40px 30px;
  text-align: center;
  position: relative;
  transition: transform 0.3s;
}

.pricing-card.premium {
  border: 2px solid var(--accent);
  background: var(--bg-white);
  box-shadow: 0 15px 35px rgba(0,0,0,0.05);
  transform: scale(1.03);
}

.pricing-card.premium:hover {
  transform: scale(1.05);
}

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

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

.pricing-card ul {
  list-style: none;
  margin: 25px 0;
  text-align: left;
}

.pricing-card ul li {
  margin-bottom: 12px;
  font-size: 15px;
  color: var(--text-dark);
}

.pricing-card ul li i {
  color: var(--accent);
  margin-right: 10px;
}

/* Form Section */
.form-section {
  padding: 80px 0;
  background-color: var(--primary);
  color: var(--bg-white);
}

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

.form-header {
  text-align: center;
  margin-bottom: 40px;
}

.form-header h2 {
  color: var(--bg-white);
  font-size: 36px;
  margin-bottom: 10px;
}

.form-header p {
  color: var(--border);
}

.contact-form {
  background-color: var(--primary-light);
  padding: 40px;
  border-radius: 8px;
  border: 1px solid var(--accent);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 14px;
  margin-bottom: 8px;
  color: var(--border);
}

.form-control {
  background-color: var(--primary);
  border: 1px solid var(--border);
  padding: 12px 15px;
  border-radius: 4px;
  color: var(--bg-white);
  font-family: var(--font-sans);
  font-size: 15px;
  transition: border-color 0.2s;
}

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

.checkbox-group {
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 25px;
}

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

.checkbox-group label {
  font-size: 13px;
  color: var(--border);
  line-height: 1.4;
}

.btn-submit {
  background-color: var(--accent);
  color: var(--primary);
  border: none;
  padding: 15px 30px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 4px;
  cursor: pointer;
  width: 100%;
  transition: background-color 0.2s;
}

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

.btn-submit:disabled {
  background-color: var(--text-muted);
  cursor: not-allowed;
}

/* FAQ Accordion */
.faq-teaser {
  padding: 80px 0;
}

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

.accordion-item {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 6px;
  margin-bottom: 15px;
  overflow: hidden;
}

.accordion-header {
  padding: 20px 25px;
  font-weight: bold;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}

.accordion-header i {
  transition: transform 0.3s;
}

.accordion-header.active i {
  transform: rotate(180deg);
}

.accordion-body {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
  color: var(--text-muted);
  font-size: 15px;
  border-top: 1px solid transparent;
}

.accordion-body.active {
  padding: 20px 25px;
  max-height: 500px;
  border-top: 1px solid var(--border);
}

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

.trust-layer-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: flex-start;
}

.trust-layer h4 {
  font-size: 14px;
  margin-bottom: 10px;
}

.trust-layer p {
  margin-bottom: 10px;
  line-height: 1.5;
}

/* Footer */
footer {
  background-color: var(--primary);
  color: var(--border);
  padding: 40px 0;
  font-size: 14px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 30px;
}

.footer-about h3 {
  color: var(--bg-white);
  font-size: 20px;
  margin-bottom: 15px;
}

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

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

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

.footer-links ul li a {
  color: var(--border);
}

.footer-links ul li a:hover {
  color: var(--accent);
}

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

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

.cookie-content h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.cookie-content p {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 15px;
}

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

.cookie-btn {
  padding: 8px 18px;
  font-size: 14px;
  font-weight: bold;
  border-radius: 4px;
  cursor: pointer;
  border: none;
}

.cookie-btn-accept {
  background-color: var(--accent);
  color: var(--primary);
}

.cookie-btn-deny {
  background-color: var(--border);
  color: var(--primary);
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

/* Responsive grid changes */
@media (max-width: 992px) {
  .hero-grid, .trust-grid, .features-grid, .trust-layer-content {
    grid-template-columns: 1fr;
  }
  .steps-grid {
    grid-template-columns: 1fr 1fr;
  }
  .services-grid, .pricing-grid {
    grid-template-columns: 1fr;
  }
  .pricing-card.premium {
    transform: none !important;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .burger-menu {
    display: block;
  }
  .steps-grid, .footer-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
}