:root {
  --navy: #1b3b59;
  --sun: #f4b547;
  --sand: #fef4e7;
  --ink: #1a1a1a;
  --muted: #5b6770;
  --line: #e3e6ea;
  --white: #ffffff;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

main {
  display: flex;
  flex-direction: column;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 8px;
  background: var(--navy);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 999px;
  z-index: 1000;
}

.skip-link:focus {
  left: 16px;
}

.container {
  width: min(1120px, 100% - 32px);
  margin: 0 auto;
}

.section {
  padding: 56px 0;
}

.section--alt {
  background: var(--sand);
}

.section-title {
  margin-bottom: 24px;
}

.section-title p {
  color: var(--muted);
}

.page-hero {
  padding-top: 40px;
}

.site-header {
  border-bottom: 1px solid var(--line);
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.brand {
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--navy);
}

.nav-toggle {
  border: 1px solid var(--navy);
  background: transparent;
  color: var(--navy);
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.site-nav {
  display: none;
  flex-direction: column;
  gap: 12px;
  padding: 16px 0;
}

.site-nav a {
  font-weight: 600;
  color: var(--navy);
}

.site-nav.open {
  display: flex;
}

.hero {
  background: var(--sand);
}

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.hero-text p {
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-art {
  display: flex;
  justify-content: center;
}

.hero-illustration {
  width: 100%;
  max-width: 320px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn--primary {
  background: var(--navy);
  color: var(--white);
}

.btn--ghost {
  border-color: var(--navy);
  color: var(--navy);
  background: transparent;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.highlight-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(27, 59, 89, 0.08);
}

.list {
  padding-left: 20px;
  margin: 12px 0 0;
  color: var(--muted);
}

.card-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card h3 {
  margin: 0;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.service-card .price {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--navy);
}

.icon {
  width: 48px;
  height: 48px;
}

.tag {
  background: var(--sand);
  color: var(--navy);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.85rem;
  display: inline-flex;
  align-self: flex-start;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-left: 4px solid var(--navy);
  padding-left: 16px;
}

.stat-number {
  font-size: 1.8rem;
  font-weight: 700;
}

.stat-label {
  color: var(--muted);
}

.process {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.process-step {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px;
  background: var(--white);
}

.step-number {
  font-weight: 700;
  color: var(--navy);
}

.quote-block {
  background: var(--navy);
  color: var(--white);
  border-radius: 20px;
  padding: 24px;
  margin-bottom: 24px;
}

.quote-block span {
  display: block;
  margin-top: 12px;
  color: #fddfb5;
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial {
  background: var(--white);
  border-radius: 16px;
  padding: 18px;
  border: 1px solid var(--line);
}

.insight-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.insight {
  background: var(--white);
  padding: 16px;
  border-radius: 14px;
  border: 1px solid var(--line);
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: 16px 20px;
  font-weight: 600;
  cursor: pointer;
}

.faq-answer {
  display: none;
  padding: 0 20px 16px;
  color: var(--muted);
}

.faq-item.open .faq-answer {
  display: block;
}

.cta {
  background: var(--navy);
  color: var(--white);
}

.cta-inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

.cta .btn--primary {
  background: var(--sun);
  color: var(--navy);
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.comparison-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--white);
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.timeline-item {
  border-left: 3px solid var(--navy);
  padding-left: 12px;
}

.timeline-year {
  font-weight: 700;
  color: var(--navy);
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.badge {
  background: var(--sand);
  color: var(--navy);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
  border: 1px solid var(--line);
}

.site-footer {
  background: #0f2a42;
  color: var(--white);
  padding: 40px 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #cfd6dc;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  display: none;
  z-index: 200;
}

.cookie-banner.show {
  display: block;
}

.cookie-banner__content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(15, 42, 66, 0.65);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 300;
}

.cookie-modal.open {
  display: flex;
}

.cookie-modal__panel {
  background: var(--white);
  border-radius: 18px;
  padding: 24px;
  width: min(520px, 100%);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cookie-modal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cookie-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 14px;
  background: var(--sand);
}

.cookie-option input {
  width: 18px;
  height: 18px;
}

.status {
  font-size: 0.85rem;
  color: var(--muted);
}

.icon-button {
  border: none;
  background: var(--sand);
  border-radius: 50%;
  width: 32px;
  height: 32px;
  cursor: pointer;
  font-size: 1.1rem;
}

@media (min-width: 768px) {
  .site-nav {
    display: flex;
    flex-direction: row;
    gap: 20px;
    padding: 0;
  }

  .nav-toggle {
    display: none;
  }

  .hero-inner,
  .split,
  .cta-inner,
  .footer-inner {
    flex-direction: row;
    align-items: center;
  }

  .card-row,
  .stats,
  .process,
  .testimonials,
  .insight-list {
    flex-direction: row;
  }

  .card-row .card,
  .process-step,
  .testimonial,
  .insight,
  .stat {
    flex: 1;
  }
}

@media (min-width: 1024px) {
  .cookie-banner__content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .footer-links {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
  }
}
