:root {
  --primary: #0F172A;
  --secondary: #1E293B;
  --accent: #D97706;
  --accent-hover: #B45309;
  --bg-light: #FDFBF7;
  --bg-card: #FFFFFF;
  --text-dark: #0F172A;
  --text-muted: #475569;
  --white: #FFFFFF;
  --border: #E2E8F0;
  --shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
}

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

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 18px;
  line-height: 1.65;
  color: var(--text-dark);
  background-color: var(--bg-light);
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.25;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 1.5rem; text-align: center; }
h3 { font-size: 1.5rem; margin-bottom: 1rem; }

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

/* Accessibility */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--accent);
  color: var(--white);
  padding: 10px 20px;
  z-index: 10000;
  transition: top 0.3s;
}
.skip-link:focus { top: 0; outline: 3px solid var(--white); }

.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: 3px;
}

/* Custom Grid Utility */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header & Nav */
header {
  background-color: var(--primary);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow);
}
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
}
.logo img {
  width: 40px;
  height: 40px;
}
nav {
  display: flex;
  gap: 24px;
}
nav a {
  color: var(--white);
  font-weight: 500;
}
nav a:hover, nav a.active {
  color: var(--accent);
}
.burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.burger span {
  display: block;
  width: 28px;
  height: 3px;
  background-color: var(--white);
  transition: 0.3s;
}

/* Hero Section with Custom SVG Grid Background */
.hero {
  background-color: var(--primary);
  color: var(--white);
  padding: 100px 0;
  position: relative;
  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%3Cpath d='M54 48c-2 0-3 1-4 2v4c0 1-1 2-2 2h-4c-1 0-2 1-2 2s1 2 2 2h4c3 0 6-3 6-6v-4c0-1 1-2 2-2s2-1 2-2-1-2-2-2zm-48 0c-1 0-2 1-2 2v4c0 3 3 6 6 6h4c1 0 2-1 2-2s-1-2-2-2h-4c-1 0-2-1-2-2v-4c0-1-1-2-2-2zm0-36c1 0 2-1 2-2v-4c0-1 1-2 2-2h4c1 0 2-1 2-2s-1-2-2-2h-4c-3 0-6 3-6 6v4c0 1 1 2 2 2zm48 0c2 0 3-1 4-2v-4c0-3-3-6-6-6h-4c-1 0-2 1-2 2s1 2 2 2h4c1 0 2 1 2 2v4c0 1 1 2 2 2z' fill='%23d97706' fill-opacity='0.08' fill-rule='evenodd'/%3E%3C/svg%3E");
}
.hero-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.hero-content p {
  font-size: 1.25rem;
  margin: 20px 0 32px 0;
  color: var(--border);
}
.btn {
  display: inline-block;
  background-color: var(--accent);
  color: var(--white);
  padding: 14px 28px;
  font-weight: 600;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.2s;
  text-align: center;
}
.btn:hover {
  background-color: var(--accent-hover);
  color: var(--white);
}
.btn-secondary {
  background-color: transparent;
  border: 2px solid var(--border);
  margin-left: 12px;
}
.btn-secondary:hover {
  background-color: var(--border);
  color: var(--primary);
}
.hero-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  height: 400px;
}

/* Statistics */
.stats {
  background-color: var(--white);
  padding: 60px 0;
  margin-top: -40px;
  border-radius: 8px;
  position: relative;
  z-index: 10;
  box-shadow: var(--shadow-lg);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-item h3 {
  font-size: 3rem;
  color: var(--accent);
  margin-bottom: 5px;
}
.stat-item p {
  font-weight: 500;
  color: var(--text-muted);
}

/* Sections */
section {
  padding: 100px 0;
}
.section-light {
  background-color: var(--bg-light);
}
.section-white {
  background-color: var(--white);
}

/* Steps (How it works) */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.step-card {
  background-color: var(--white);
  padding: 32px;
  border-radius: 6px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--accent);
  text-align: center;
}
.step-num {
  width: 50px;
  height: 50px;
  background-color: var(--accent);
  color: var(--white);
  font-weight: 700;
  font-size: 1.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.service-card {
  background-color: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s;
}
.service-card:hover {
  transform: translateY(-5px);
}
.service-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.service-body {
  padding: 24px;
}
.service-body h3 {
  margin-bottom: 12px;
}

/* Features (Asymmetrical Block) */
.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.feature-block img {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow);
  height: 400px;
  object-fit: cover;
}
.feature-bullets {
  list-style: none;
  margin-top: 24px;
}
.feature-bullets li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 16px;
}
.feature-bullets li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--accent);
  position: absolute;
  left: 0;
  top: 2px;
}

/* Pricing Section */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.price-card {
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 40px 32px;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
}
.price-card.popular {
  border: 2px solid var(--accent);
  box-shadow: var(--shadow-lg);
}
.price-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--accent);
  color: var(--white);
  padding: 4px 16px;
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: 20px;
  text-transform: uppercase;
}
.price-val {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
  margin: 24px 0;
}
.price-features {
  list-style: none;
  margin: 24px 0;
  text-align: left;
  flex-grow: 1;
}
.price-features li {
  margin-bottom: 12px;
  padding-left: 24px;
  position: relative;
}
.price-features li::before {
  content: "•";
  color: var(--accent);
  position: absolute;
  left: 0;
  font-size: 1.5rem;
  line-height: 1;
}

/* Form Section */
.form-section {
  background-color: var(--secondary);
  color: var(--white);
}
.form-section h2 {
  color: var(--white);
}
.form-container {
  max-width: 700px;
  margin: 40px auto 0 auto;
  background-color: var(--primary);
  padding: 48px;
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
}
.form-group {
  margin-bottom: 24px;
}
.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}
.form-control {
  width: 100%;
  padding: 12px;
  border-radius: 4px;
  border: 1px solid var(--border);
  font-size: 1rem;
  background-color: var(--white);
  color: var(--text-dark);
}
.form-control:focus {
  outline: 3px solid var(--accent);
}
.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.checkbox-group input {
  margin-top: 6px;
  width: 18px;
  height: 18px;
}
.checkbox-group label {
  font-size: 0.95rem;
  color: var(--border);
}

/* FAQ Accordion */
.faq-list {
  max-width: 800px;
  margin: 48px auto 0 auto;
}
.faq-item {
  background-color: var(--white);
  border: 1px solid var(--border);
  margin-bottom: 16px;
  border-radius: 6px;
  overflow: hidden;
}
.faq-trigger {
  width: 100%;
  padding: 24px;
  text-align: left;
  background: none;
  border: none;
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-trigger::after {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  transition: transform 0.3s;
}
.faq-item.active .faq-trigger::after {
  transform: rotate(180deg);
}
.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 24px;
}
.faq-item.active .faq-content {
  max-height: 300px;
  padding-bottom: 24px;
}

/* Trust Layer */
.trust-layer {
  background-color: #F1F5F9;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 48px 0;
  font-size: 0.95rem;
}
.trust-layer h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}
.trust-layer p {
  color: var(--text-muted);
  margin-bottom: 12px;
}
.trust-layer .disclaimer {
  font-style: italic;
  font-size: 0.85rem;
}

/* Footer */
footer {
  background-color: var(--primary);
  color: var(--white);
  padding: 60px 0 30px 0;
  font-size: 0.95rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}
.footer-col h4 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 20px;
}
.footer-col p {
  color: var(--border);
}
.footer-links {
  list-style: none;
}
.footer-links li {
  margin-bottom: 10px;
}
.footer-links a {
  color: var(--border);
}
.footer-links a:hover {
  color: var(--accent);
}
.footer-bottom {
  border-top: 1px solid var(--secondary);
  padding-top: 30px;
  text-align: center;
  color: var(--border);
  font-size: 0.85rem;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--primary);
  color: var(--white);
  padding: 24px;
  z-index: 10000;
  box-shadow: 0 -4px 10px rgba(0,0,0,0.2);
  display: none;
}
.cookie-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.cookie-text {
  font-size: 0.95rem;
  color: var(--border);
}
.cookie-buttons {
  display: flex;
  gap: 12px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .pricing-grid, .services-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .hero-wrapper, .feature-block, .footer-grid, .stats-grid, .steps-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .burger {
    display: flex;
  }
  nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background-color: var(--primary);
    padding: 24px;
    box-shadow: var(--shadow);
  }
  nav.active {
    display: flex;
  }
  .cookie-container {
    flex-direction: column;
    text-align: center;
  }
}

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