* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --navy: #1f2a44;
  --gold: #d5a74a;
  --sand: #f5f1e8;
  --mist: #eef2f6;
  --slate: #4a5668;
  --white: #ffffff;
  --shadow: 0 18px 40px rgba(31, 42, 68, 0.12);
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--navy);
  background: var(--white);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1100px, 90%);
  margin: 0 auto;
}

.section {
  padding: 56px 0;
}

.section-alt {
  background: var(--mist);
}

.section-sand {
  background: var(--sand);
}

.section-highlight {
  background: var(--navy);
  color: var(--white);
}

.site-header {
  background: var(--white);
  box-shadow: 0 8px 24px rgba(31, 42, 68, 0.08);
  position: sticky;
  top: 0;
  z-index: 20;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.logo {
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.5px;
}

.tagline {
  font-size: 0.85rem;
  color: var(--slate);
}

.menu-toggle {
  border: 1px solid var(--navy);
  background: transparent;
  padding: 8px 12px;
  font-size: 0.95rem;
  border-radius: 999px;
}

.site-nav {
  display: none;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px;
  background: var(--white);
  border-top: 1px solid rgba(31, 42, 68, 0.1);
}

.mobile-nav a {
  padding: 8px 0;
}

.mobile-nav.is-hidden {
  display: none;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.hero-card {
  background: var(--white);
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid var(--navy);
  background: var(--navy);
  color: var(--white);
  font-weight: 600;
}

.button.secondary {
  background: transparent;
  color: var(--navy);
}

.icon-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.icon-card {
  flex: 1 1 180px;
  background: var(--white);
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat-item {
  background: var(--white);
  padding: 18px;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.stat-item strong {
  font-size: 1.6rem;
  display: block;
}

.feature-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature-card {
  padding: 22px;
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split-panel {
  flex: 1;
  background: var(--white);
  padding: 24px;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.quote {
  font-size: 1.2rem;
  font-style: italic;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.timeline-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.timeline-badge {
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 999px;
}

.service-cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-card {
  border: 1px solid rgba(31, 42, 68, 0.1);
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--white);
}

.price {
  font-weight: 700;
  color: var(--gold);
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.comparison-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: var(--white);
  padding: 16px;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.testimonial {
  background: var(--white);
  padding: 22px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid rgba(31, 42, 68, 0.15);
  border-radius: 14px;
  overflow: hidden;
  background: var(--white);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 16px;
  background: var(--white);
  border: none;
  font-weight: 600;
}

.faq-answer {
  padding: 0 16px 16px;
  color: var(--slate);
}

.info-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.info-card {
  background: var(--white);
  border-radius: 18px;
  padding: 20px;
  box-shadow: var(--shadow);
}

.contact-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer {
  background: var(--navy);
  color: var(--white);
  padding: 40px 0;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-banner {
  position: fixed;
  inset: auto 0 0 0;
  background: var(--navy);
  color: var(--white);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 40;
}

.cookie-banner.is-hidden {
  display: none;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(31, 42, 68, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 50;
}

.cookie-modal.is-hidden {
  display: none;
}

.cookie-modal-content {
  background: var(--white);
  color: var(--navy);
  padding: 24px;
  border-radius: 20px;
  width: min(520px, 100%);
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: var(--shadow);
}

.toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: var(--mist);
  padding: 12px;
  border-radius: 12px;
}

.toggle-button {
  border: 1px solid var(--navy);
  background: transparent;
  padding: 6px 12px;
  border-radius: 999px;
}

.legal-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: var(--slate);
}

@media (min-width: 768px) {
  .menu-toggle {
    display: none;
  }

  .site-nav {
    display: flex;
    gap: 20px;
    font-weight: 600;
  }

  .mobile-nav {
    display: none;
  }

  .hero {
    flex-direction: row;
    align-items: center;
  }

  .feature-grid,
  .service-cards,
  .stats,
  .comparison,
  .info-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .feature-card,
  .service-card,
  .stat-item,
  .comparison-row,
  .info-card {
    flex: 1 1 calc(50% - 16px);
  }

  .split {
    flex-direction: row;
  }

  .footer-links {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

@media (min-width: 1024px) {
  .feature-card,
  .service-card,
  .stat-item {
    flex: 1 1 calc(33.333% - 16px);
  }
}
