:root {
  --primary-color: #1a2e40;
  --secondary-color: #c5a059;
  --bg-color: #fcfbfa;
  --text-color: #2c3e50;
  --text-light: #64748b;
  --white: #ffffff;
  --card-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  --font-title: 'Playfair Display', serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
}

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

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

h1, h2, h3, h4 {
  font-family: var(--font-title);
  color: var(--primary-color);
  font-weight: 700;
}

/* Accessibility */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--secondary-color);
  color: var(--primary-color);
  padding: 8px;
  z-index: 100;
  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 */
header {
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.02);
  position: sticky;
  top: 0;
  z-index: 90;
}
.header-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
}
.logo-area {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo-area img {
  width: 40px;
  height: 40px;
}
.logo-text {
  font-family: var(--font-title);
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-color);
}
nav ul {
  display: flex;
  list-style: none;
  gap: 25px;
  align-items: center;
}
nav a {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 500;
  transition: color 0.3s;
}
nav a:hover, nav a:focus {
  color: var(--secondary-color);
  outline: none;
}
.btn-cta-nav {
  background-color: var(--primary-color);
  color: var(--white) !important;
  padding: 10px 20px;
  border-radius: 4px;
  transition: background-color 0.3s !important;
}
.btn-cta-nav:hover {
  background-color: var(--secondary-color);
}

/* Hamburger */
.burger {
  display: none;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: var(--primary-color);
}

/* Hero Section */
.hero {
  padding: 80px 20px;
  background: linear-gradient(135deg, #1a2e40 0%, #0d1720 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background: radial-gradient(circle, rgba(197,160,89,0.08) 0%, transparent 80%);
  pointer-events: none;
}
.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.hero-content h1 {
  color: var(--white);
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 20px;
}
.hero-content p {
  font-size: 18px;
  margin-bottom: 30px;
  color: #cbd5e1;
}
.hero-buttons {
  display: flex;
  gap: 15px;
}
.btn-primary {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  font-weight: 600;
  padding: 15px 30px;
  border-radius: 4px;
  text-decoration: none;
  display: inline-block;
  transition: transform 0.2s, background-color 0.3s;
}
.btn-primary:hover {
  transform: translateY(-2px);
  background-color: #b5904f;
}
.btn-secondary {
  border: 2px solid var(--white);
  color: var(--white);
  font-weight: 600;
  padding: 15px 30px;
  border-radius: 4px;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s, color 0.3s;
}
.btn-secondary:hover {
  background-color: var(--white);
  color: var(--primary-color);
}
.hero-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* Stats Section */
.stats {
  background-color: var(--white);
  padding: 50px 20px;
}
.stats-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  text-align: center;
}
.stat-item h3 {
  font-size: 36px;
  color: var(--secondary-color);
  margin-bottom: 5px;
}
.stat-item p {
  color: var(--text-light);
  font-size: 16px;
}

/* How It Works Section */
.how-it-works {
  padding: 80px 20px;
  background-color: #f5f4f0;
}
.section-title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 50px;
}
.steps-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}
.step-card {
  background-color: var(--white);
  padding: 30px 20px;
  border-radius: 6px;
  box-shadow: var(--card-shadow);
  text-align: center;
  position: relative;
}
.step-card .icon {
  font-size: 32px;
  color: var(--secondary-color);
  margin-bottom: 15px;
}
.step-card h4 {
  margin-bottom: 10px;
}

/* Trust Principles Section */
.trust-principles {
  padding: 80px 20px;
  background-color: var(--white);
}
.trust-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.trust-text h3 {
  font-size: 30px;
  margin-bottom: 20px;
}
.trust-text p {
  margin-bottom: 15px;
  color: var(--text-color);
}
.trust-text ul {
  list-style: none;
  margin-top: 15px;
}
.trust-text ul li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}
.trust-text ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--secondary-color);
  font-weight: bold;
}

/* Services Grid */
.services-section {
  padding: 80px 20px;
  background-color: var(--bg-color);
}
.services-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.service-card {
  background-color: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  display: flex;
  flex-direction: column;
}
.service-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}
.service-body {
  padding: 30px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.service-body h3 {
  margin-bottom: 15px;
  font-size: 22px;
}
.service-body p {
  color: var(--text-light);
  margin-bottom: 20px;
  flex-grow: 1;
}

/* Features Asymmetric Section */
.features-asymm {
  padding: 80px 20px;
  background-color: #fdfdfd;
}
.asymm-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.21fr;
  gap: 50px;
  align-items: center;
}
.asymm-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--card-shadow);
}
.asymm-content h2 {
  font-size: 32px;
  margin-bottom: 20px;
}
.asymm-content p {
  margin-bottom: 20px;
}

/* Pricing Section */
.pricing-section {
  padding: 80px 20px;
  background-color: var(--bg-color);
}
.pricing-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: stretch;
}
.price-card {
  background-color: var(--white);
  border-radius: 8px;
  padding: 40px 30px;
  box-shadow: var(--card-shadow);
  text-align: center;
  display: flex;
  flex-direction: column;
  position: relative;
  border: 1px solid #e2e8f0;
}
.price-card.featured {
  border: 2px solid var(--secondary-color);
  transform: translateY(-5px);
}
.badge-popular {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: var(--secondary-color);
  color: var(--primary-color);
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 700;
  border-radius: 20px;
  text-transform: uppercase;
}
.price-name {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--text-light);
}
.price-amount {
  font-size: 44px;
  font-family: var(--font-title);
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 20px;
}
.price-features {
  list-style: none;
  margin-bottom: 30px;
  flex-grow: 1;
  text-align: left;
}
.price-features li {
  margin-bottom: 12px;
  color: var(--text-color);
  display: flex;
  align-items: center;
  gap: 10px;
}
.price-features li::before {
  content: '✓';
  color: var(--secondary-color);
  font-weight: bold;
}

/* Form Section */
.form-section {
  padding: 80px 20px;
  background-color: #1a2e40;
  color: var(--white);
}
.form-container {
  max-width: 650px;
  margin: 0 auto;
}
.form-container h2 {
  color: var(--white);
  text-align: center;
  font-size: 32px;
  margin-bottom: 15px;
}
.form-container p {
  text-align: center;
  margin-bottom: 40px;
  color: #cbd5e1;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-group.full-width {
  grid-column: span 2;
}
label {
  font-size: 14px;
  font-weight: 500;
}
input, textarea {
  width: 100%;
  padding: 12px 15px;
  border-radius: 4px;
  border: 1px solid #475569;
  background-color: #0f172a;
  color: var(--white);
  font-family: var(--font-body);
}
input:focus, textarea:focus {
  outline: 2px solid var(--secondary-color);
  border-color: transparent;
}
.consent-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 30px;
}
.consent-checkbox input {
  width: auto;
  margin-top: 4px;
}
.consent-checkbox label {
  font-size: 13px;
  color: #cbd5e1;
}
.consent-checkbox a {
  color: var(--secondary-color);
  text-decoration: underline;
}
.btn-submit {
  width: 100%;
  background-color: var(--secondary-color);
  color: var(--primary-color);
  font-weight: 700;
  border: none;
  padding: 15px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s;
}
.btn-submit:hover {
  background-color: #b5904f;
}

/* FAQ Accordion */
.faq-section {
  padding: 80px 20px;
  background-color: var(--white);
}
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}
.accordion-item {
  border-bottom: 1px solid #e2e8f0;
  padding: 20px 0;
}
.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: var(--font-title);
  font-size: 20px;
  font-weight: 600;
  color: var(--primary-color);
  cursor: pointer;
}
.accordion-header i {
  color: var(--secondary-color);
  transition: transform 0.3s;
}
.accordion-content {
  display: none;
  padding-top: 15px;
  color: var(--text-light);
}
.accordion-item.active .accordion-content {
  display: block;
}
.accordion-item.active .accordion-header i {
  transform: rotate(180deg);
}

/* Trust Layer */
.trust-layer {
  background-color: #f1f5f9;
  border-top: 1px solid #cbd5e1;
  padding: 40px 20px;
  font-size: 13px;
  color: var(--text-light);
}
.trust-layer-container {
  max-width: 1200px;
  margin: 0 auto;
}
.trust-layer h4 {
  font-size: 16px;
  margin-bottom: 10px;
  color: var(--primary-color);
}
.trust-layer p {
  margin-bottom: 8px;
}
.trust-layer a {
  color: var(--primary-color);
  text-decoration: underline;
}

/* Footer */
footer {
  background-color: #0f172a;
  color: #94a3b8;
  padding: 50px 20px;
  font-size: 14px;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  border-bottom: 1px solid #334155;
  padding-bottom: 30px;
  margin-bottom: 30px;
}
.footer-info h4 {
  color: var(--white);
  margin-bottom: 15px;
}
.footer-links {
  display: flex;
  gap: 40px;
  justify-content: flex-end;
}
.footer-column h5 {
  color: var(--white);
  margin-bottom: 15px;
}
.footer-column ul {
  list-style: none;
}
.footer-column ul li {
  margin-bottom: 8px;
}
.footer-column ul a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-column ul a:hover {
  color: var(--secondary-color);
}
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background-color: var(--primary-color);
  color: var(--white);
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  z-index: 1000;
  display: none;
  max-width: 800px;
  margin: 0 auto;
}
.cookie-content {
  margin-bottom: 15px;
  font-size: 14px;
}
.cookie-content a {
  color: var(--secondary-color);
  text-decoration: underline;
}
.cookie-buttons {
  display: flex;
  gap: 15px;
}
.btn-cookie {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  border: none;
  padding: 10px 20px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
}
.btn-cookie.secondary {
  background-color: transparent;
  color: var(--white);
  border: 1px solid var(--white);
}

/* Utility / Page Layouts */
.content-wrapper {
  max-width: 800px;
  margin: 60px auto;
  padding: 0 20px;
}
.content-wrapper h1 {
  font-size: 36px;
  margin-bottom: 30px;
}
.content-wrapper h2 {
  font-size: 24px;
  margin-top: 30px;
  margin-bottom: 15px;
}
.content-wrapper p {
  margin-bottom: 15px;
  color: var(--text-color);
}
.content-wrapper ul {
  margin-bottom: 20px;
  padding-left: 20px;
}
.content-wrapper ul li {
  margin-bottom: 8px;
}

/* Accessibility for Animations */
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}

/* Responsiveness */
@media (max-width: 1024px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .burger {
    display: block;
  }
  nav ul {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--white);
    padding: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    gap: 15px;
  }
  nav ul.active {
    display: flex;
  }
  .hero-container, .stats-container, .trust-grid, .services-grid, .asymm-container, .pricing-grid, .footer-container {
    grid-template-columns: 1fr;
  }
  .steps-grid {
    grid-template-columns: 1fr;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-group.full-width {
    grid-column: span 1;
  }
  .footer-links {
    justify-content: flex-start;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}