* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --navy: #1f2f3a;
  --sea: #2d5663;
  --sand: #f4efe7;
  --mist: #e4edf0;
  --coral: #d97c5f;
  --sage: #6a8a7a;
  --white: #ffffff;
  --shadow: 0 14px 40px rgba(31, 47, 58, 0.12);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--navy);
  background: var(--white);
  line-height: 1.6;
}

img,
svg {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 56px 0;
}

.section-alt {
  background: var(--sand);
}

.section-mist {
  background: var(--mist);
}

.section-accent {
  background: var(--sea);
  color: var(--white);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--sage);
  margin-bottom: 12px;
}

.section-accent .eyebrow {
  color: #c8e3e9;
}

h1,
h2,
h3,
h4 {
  line-height: 1.2;
}

h1 {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

h2 {
  font-size: 1.8rem;
  margin-bottom: 16px;
}

h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

p {
  margin-bottom: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  border: 2px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
  background: var(--coral);
  color: var(--white);
  box-shadow: var(--shadow);
}

.btn-light {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}

.btn-outline {
  border-color: var(--navy);
  color: var(--navy);
}

.btn:hover,
.btn:focus {
  transform: translateY(-2px);
}

.site-header {
  position: sticky;
  top: 0;
  background: var(--white);
  z-index: 10;
  box-shadow: 0 10px 24px rgba(31, 47, 58, 0.08);
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.logo svg {
  width: 32px;
  height: 32px;
}

.nav-links {
  display: none;
  list-style: none;
  gap: 20px;
}

.nav-links a {
  font-weight: 600;
}

.nav-toggle {
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: 10px;
  padding: 10px 14px;
  font-weight: 600;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 12px;
  padding: 16px 0 24px;
}

.mobile-menu a {
  font-weight: 600;
}

.mobile-menu.is-open {
  display: flex;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero-panel {
  background: var(--mist);
  border-radius: 28px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-stats {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.stat-card {
  background: var(--white);
  padding: 16px;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.card-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: var(--white);
  border-radius: 18px;
  padding: 20px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card-icon {
  width: 40px;
  height: 40px;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.feature-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.feature-item svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.quote {
  background: var(--navy);
  color: var(--white);
  padding: 28px;
  border-radius: 24px;
}

.stats-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stats-row .stat-card {
  border-left: 4px solid var(--coral);
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.step {
  padding: 16px;
  border-radius: 16px;
  background: var(--mist);
}

.testimonial {
  background: var(--white);
  padding: 20px;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.comparison-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: var(--white);
  border-radius: 16px;
  padding: 16px;
  box-shadow: var(--shadow);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border-radius: 14px;
  border: 1px solid #d8dee3;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 14px 16px;
  font-weight: 600;
  border: none;
  background: var(--white);
}

.faq-answer {
  padding: 0 16px 16px;
  display: none;
}

.faq-item.is-open .faq-answer {
  display: block;
}

.service-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.price {
  font-weight: 700;
  color: var(--coral);
}

.cta-panel {
  background: var(--coral);
  color: var(--white);
  border-radius: 24px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer {
  padding: 32px 0;
  background: var(--navy);
  color: var(--white);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.95rem;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: var(--navy);
  color: var(--white);
  padding: 20px;
  border-radius: 18px;
  display: none;
  flex-direction: column;
  gap: 12px;
  box-shadow: var(--shadow);
  z-index: 20;
}

.cookie-banner.is-visible {
  display: flex;
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(31, 47, 58, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 25;
}

.modal.is-open {
  display: flex;
}

.modal-content {
  background: var(--white);
  color: var(--navy);
  padding: 24px;
  border-radius: 20px;
  width: min(540px, 90%);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.modal-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.info-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pill {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--mist);
  font-size: 0.85rem;
  font-weight: 600;
}

@media (min-width: 768px) {
  h1 {
    font-size: 2.7rem;
  }

  .nav-links {
    display: flex;
  }

  .nav-toggle {
    display: none;
  }

  .mobile-menu {
    display: none !important;
  }

  .hero {
    flex-direction: row;
    align-items: stretch;
  }

  .hero-panel {
    flex: 1;
  }

  .hero-stats {
    flex-direction: row;
  }

  .split {
    flex-direction: row;
    align-items: flex-start;
  }

  .split > * {
    flex: 1;
  }

  .card-list,
  .service-grid,
  .stats-row,
  .comparison,
  .process-steps {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card,
  .stat-card,
  .comparison-row,
  .step,
  .testimonial {
    flex: 1 1 calc(50% - 16px);
  }

  .feature-list {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .feature-item {
    flex: 1 1 calc(50% - 12px);
  }

  .cta-panel {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .footer-links,
  .cookie-actions,
  .modal-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .info-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .info-grid .card {
    flex: 1 1 calc(33.333% - 16px);
  }
}
