:root {
  --primary: #102a43;
  --primary-light: #1e4e79;
  --secondary: #b69136;
  --secondary-dark: #8c6d23;
  --bg: #faf9f6;
  --bg-card: #ffffff;
  --text: #22252a;
  --text-muted: #627d98;
  --border: #d9e2ec;
  --transition: all 0.3s ease;
  --font-title: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
}

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

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

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

h1, h2, h3, h4 {
  font-family: var(--font-title);
  color: var(--primary);
  margin-bottom: 1rem;
}

/* Accessibility */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--secondary);
  color: #fff;
  padding: 10px;
  z-index: 9999;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 0;
}

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

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

/* Header */
header {
  background-color: var(--primary);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 5%;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #fff;
}

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

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

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

nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
}

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

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
}

.burger span {
  width: 25px;
  height: 3px;
  background-color: #fff;
  transition: var(--transition);
}

/* Hero Section */
.hero {
  background-color: var(--primary);
  color: #fff;
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Cpath d='M9 15c0-1.66 1.34-3 3-3s3 1.34 3 3-1.34 3-3 3-3-1.34-3-3zm3 3c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm21 21c0-1.66 1.34-3 3-3s3 1.34 3 3-1.34 3-3 3-3-1.34-3-3zm3 3c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5z' fill='%23b69136' fill-opacity='0.08' fill-rule='evenodd'/%3E%3C/svg%3E");
}

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

.hero h1 {
  color: #fff;
  font-size: 3rem;
  line-height: 1.2;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #d9e2ec;
}

.btn {
  display: inline-block;
  background-color: var(--secondary);
  color: #fff;
  padding: 0.8rem 2rem;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.btn:hover {
  background-color: var(--secondary-dark);
}

.hero-img img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* Statistics */
.stats {
  background-color: var(--bg-card);
  padding: 4rem 0;
  border-bottom: 1px solid var(--border);
}

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

.stat-item h3 {
  font-size: 2.5rem;
  color: var(--secondary);
  margin-bottom: 0.5rem;
}

/* How It Works */
.steps {
  padding: 5rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

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

.step-card {
  background-color: var(--bg-card);
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  transition: var(--transition);
}

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

.step-icon {
  font-size: 2.5rem;
  color: var(--secondary);
  margin-bottom: 1rem;
}

/* Features Block (Asymmetric) */
.features-block {
  padding: 5rem 0;
  background-color: var(--bg-card);
}

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

.asym-img img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

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

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

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

/* Pricing Section */
.pricing {
  padding: 5rem 0;
}

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

.price-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 3rem 2rem;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.price-card.featured {
  border-color: var(--secondary);
  box-shadow: 0 10px 30px rgba(182,145,54,0.15);
  transform: scale(1.03);
}

.badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: var(--secondary);
  color: #fff;
  padding: 0.3rem 1rem;
  font-size: 0.8rem;
  font-weight: bold;
  border-radius: 20px;
}

.price-card h3 {
  font-size: 1.8rem;
}

.price-amount {
  font-size: 2.5rem;
  font-family: var(--font-title);
  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.8rem;
  color: var(--text-muted);
}

/* FAQ Details/Summary */
details {
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-bottom: 1rem;
  padding: 1rem;
  transition: var(--transition);
}

details[open] {
  border-color: var(--secondary);
}

summary {
  font-family: var(--font-title);
  font-weight: bold;
  cursor: pointer;
  outline: none;
  list-style: none;
  position: relative;
  padding-right: 2rem;
  color: var(--primary);
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: '+';
  position: absolute;
  right: 0;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--secondary);
}

details[open] summary::after {
  content: '−';
}

details p {
  margin-top: 1rem;
  color: var(--text-muted);
}

/* Contact & Form */
.contact-section {
  padding: 5rem 0;
  background-color: var(--bg-card);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-form-container {
  background-color: var(--bg);
  padding: 3rem;
  border-radius: 12px;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.02);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: bold;
  color: var(--primary);
}

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

.form-group input:focus, .form-group textarea:focus {
  border-color: var(--secondary);
  outline: none;
}

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

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

/* Trust Layer & Footer */
.trust-layer {
  background-color: #0c1f33;
  color: #a0aec0;
  padding: 3rem 0;
  font-size: 0.9rem;
  border-bottom: 1px solid #1a365d;
}

.trust-layer h3 {
  color: #fff;
  margin-bottom: 1rem;
}

.trust-layer a {
  color: var(--secondary);
  text-decoration: underline;
}

footer {
  background-color: var(--primary);
  color: #fff;
  padding: 3rem 0;
}

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

.footer-col h4 {
  color: #fff;
  margin-bottom: 1.5rem;
}

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

.footer-col ul li {
  margin-bottom: 0.8rem;
}

.footer-col ul li a {
  color: #cbd5e1;
  text-decoration: none;
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--secondary);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #1e4e79;
  color: #94a3b8;
  font-size: 0.85rem;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: var(--bg-card);
  color: var(--text);
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 5px 25px rgba(0,0,0,0.15);
  max-width: 400px;
  z-index: 10000;
  display: none;
  border-left: 5px solid var(--secondary);
}

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

.cookie-banner a {
  color: var(--primary);
  text-decoration: underline;
}

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

.btn-cookie-accept {
  background-color: var(--secondary);
  color: #fff;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
}

.btn-cookie-decline {
  background-color: transparent;
  color: var(--text-muted);
  padding: 0.5rem 1rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  cursor: pointer;
}

/* Responsive design */
@media (max-width: 992px) {
  .hero-grid, .stats-grid, .steps-grid, .asym-grid, .pricing-grid, .contact-grid, .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  .price-card.featured {
    transform: none;
  }
  nav ul {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: var(--primary);
    padding: 2rem;
    box-shadow: 0 10px 10px rgba(0,0,0,0.1);
  }
  nav ul.active {
    display: flex;
  }
  .burger {
    display: flex;
  }
  .burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }
  .burger.active span:nth-child(2) {
    opacity: 0;
  }
  .burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
}