* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --navy: #1a1f2b;
  --gold: #c8a46a;
  --cream: #f7f1e8;
  --stone: #f2f3f5;
  --charcoal: #2f3642;
  --white: #ffffff;
  --shadow: 0 18px 30px rgba(26, 31, 43, 0.08);
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.6;
}

img,
svg {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1140px, 90%);
  margin: 0 auto;
}

.section {
  padding: 64px 0;
}

.section-alt {
  background: var(--stone);
}

.section-dark {
  background: var(--navy);
  color: var(--white);
}

.section-dark a {
  color: var(--white);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  color: var(--gold);
  margin-bottom: 12px;
  display: inline-block;
}

h1,
h2,
h3 {
  font-weight: 600;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.4rem, 2vw + 1.5rem, 3.4rem);
}

h2 {
  font-size: clamp(1.8rem, 1.5vw + 1.2rem, 2.5rem);
  margin-bottom: 20px;
}

h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

p {
  margin-bottom: 16px;
  color: inherit;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--navy);
  font-weight: 600;
  border: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.site-header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 12px 20px rgba(26, 31, 43, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.logo {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-links {
  display: none;
  gap: 20px;
  align-items: center;
}

.nav-toggle {
  background: transparent;
  border: 1px solid var(--navy);
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 12px;
  padding: 20px 5%;
  background: var(--white);
  border-top: 1px solid #e3e5e9;
}

.mobile-menu.is-open {
  display: flex;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-card {
  background: var(--white);
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.card-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.card {
  background: var(--white);
  padding: 22px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card .icon {
  width: 42px;
  height: 42px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  background: var(--white);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 0.9rem;
  box-shadow: var(--shadow);
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.stat-item {
  background: var(--white);
  padding: 20px;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.stat-item strong {
  font-size: 1.6rem;
  display: block;
  margin-bottom: 8px;
}

.testimonial {
  background: var(--white);
  border-radius: 20px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.quote {
  font-style: italic;
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.comparison-card {
  border: 1px solid #dde0e6;
  border-radius: 18px;
  padding: 20px;
  background: var(--white);
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.step span {
  font-weight: 700;
  color: var(--gold);
  font-size: 1.2rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border-radius: 16px;
  border: 1px solid #d9dde3;
  background: var(--white);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 16px 20px;
  background: transparent;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.3s ease;
}

.faq-item.is-open .faq-answer {
  max-height: 220px;
  padding-bottom: 16px;
}

.footer {
  padding: 40px 0;
  background: var(--navy);
  color: var(--white);
}

.footer-top {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 24px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 16px;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 18px;
  display: none;
  width: min(920px, 92%);
  z-index: 2000;
}

.cookie-banner.is-visible {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(26, 31, 43, 0.65);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 3000;
}

.cookie-modal.is-visible {
  display: flex;
}

.cookie-panel {
  background: var(--white);
  border-radius: 20px;
  width: min(620px, 92%);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.cookie-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-radius: 14px;
  background: var(--stone);
}

.cookie-toggle button {
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid var(--gold);
  background: transparent;
  cursor: pointer;
  font-weight: 600;
  color: var(--navy);
}

.cookie-toggle button.is-active {
  background: var(--gold);
}

.service-table {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--white);
  padding: 20px;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.service-row .price {
  font-weight: 700;
  color: var(--gold);
  font-size: 1.1rem;
}

.info-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.info-card {
  background: var(--white);
  padding: 20px;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.cta-panel {
  background: var(--gold);
  color: var(--navy);
  border-radius: 24px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

@media (min-width: 768px) {
  .hero {
    flex-direction: row;
    align-items: center;
  }

  .hero > * {
    flex: 1;
  }

  .card-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 calc(33% - 20px);
  }

  .split {
    flex-direction: row;
  }

  .split > * {
    flex: 1;
  }

  .stats {
    flex-direction: row;
  }

  .stat-item {
    flex: 1;
  }

  .comparison {
    flex-direction: row;
  }

  .comparison-card {
    flex: 1;
  }

  .process-steps {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .step {
    flex: 1 1 calc(50% - 16px);
  }

  .footer-top {
    flex-direction: row;
    justify-content: space-between;
  }

  .info-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .info-card {
    flex: 1 1 calc(50% - 16px);
  }

  .service-row {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

@media (min-width: 960px) {
  .nav-links {
    display: flex;
  }

  .nav-toggle {
    display: none;
  }

  .mobile-menu {
    display: none !important;
  }
}
