* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #0f1a2b;
  --ink-soft: #2a3a55;
  --accent: #1d7f7a;
  --accent-dark: #145a57;
  --sun: #f2b84b;
  --mist: #f5f7fb;
  --pearl: #ffffff;
  --line: #dde3ee;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--pearl);
  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(--mist);
}

.section--highlight {
  background: linear-gradient(135deg, rgba(29, 127, 122, 0.08), rgba(242, 184, 75, 0.12));
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  color: var(--accent-dark);
  font-weight: 600;
}

.section-title {
  font-size: 1.9rem;
  margin: 10px 0 18px;
}

.section-text {
  color: var(--ink-soft);
  max-width: 720px;
}

.btn {
  border: 1px solid var(--accent);
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  background: transparent;
}

.btn-primary {
  background: var(--accent);
  color: var(--pearl);
  border-color: var(--accent);
}

.btn-primary:hover {
  background: var(--accent-dark);
}

.btn-outline:hover {
  background: rgba(29, 127, 122, 0.08);
}

.btn-link {
  border-color: transparent;
  padding: 10px 0;
  color: var(--accent-dark);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--pearl);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.1rem;
}

.brand svg {
  width: 32px;
  height: 32px;
}

.menu-toggle {
  border: 1px solid var(--line);
  background: var(--pearl);
  padding: 10px 14px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
}

.site-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 78%;
  max-width: 320px;
  height: 100vh;
  background: var(--pearl);
  display: flex;
  flex-direction: column;
  padding: 80px 24px 24px;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  gap: 18px;
  box-shadow: -18px 0 40px rgba(15, 26, 43, 0.12);
}

.site-nav a {
  font-weight: 600;
}

.site-nav.open {
  transform: translateX(0);
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 26, 43, 0.4);
}

.no-scroll {
  overflow: hidden;
}

.hero {
  padding: 60px 0 70px;
}

.hero h1 {
  font-size: 2.4rem;
  margin-bottom: 18px;
}

.hero p {
  max-width: 640px;
  color: var(--ink-soft);
  margin-bottom: 22px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.card-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 24px;
}

.card {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px;
  background: var(--pearl);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card h3 {
  font-size: 1.1rem;
}

.icon {
  width: 36px;
  height: 36px;
  color: var(--accent);
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}

.stat {
  border-left: 4px solid var(--accent);
  padding-left: 14px;
}

.stat strong {
  font-size: 1.6rem;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}

.highlight-panel {
  background: var(--pearl);
  border-radius: 20px;
  border: 1px solid var(--line);
  padding: 24px;
  box-shadow: 0 24px 48px rgba(15, 26, 43, 0.08);
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}

.list li {
  list-style: none;
  padding-left: 24px;
  position: relative;
  color: var(--ink-soft);
}

.list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--sun);
}

.testimonial {
  border-radius: 18px;
  padding: 20px;
  background: var(--pearl);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.testimonial span {
  color: var(--accent-dark);
  font-weight: 600;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: var(--pearl);
}

.faq-item button {
  width: 100%;
  padding: 16px;
  background: transparent;
  border: none;
  text-align: left;
  font-weight: 600;
  cursor: pointer;
}

.faq-item .faq-body {
  padding: 0 16px 16px;
  display: none;
  color: var(--ink-soft);
}

.faq-item.open .faq-body {
  display: block;
}

.service-price {
  font-weight: 700;
  color: var(--accent-dark);
}

.compare {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 20px;
}

.compare-tier {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
  background: var(--pearl);
}

.compare-tier h3 {
  margin-bottom: 10px;
}

.contact-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px;
  background: var(--pearl);
}

.footer {
  background: var(--ink);
  color: var(--pearl);
  padding: 40px 0;
}

.footer a {
  color: var(--pearl);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 0;
  right: 0;
  z-index: 20;
}

.cookie-banner .banner-inner {
  background: var(--pearl);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 20px 40px rgba(15, 26, 43, 0.18);
}

.banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 30;
}

.cookie-modal[hidden] {
  display: none;
}

.cookie-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 26, 43, 0.5);
}

.cookie-modal__content {
  position: relative;
  background: var(--pearl);
  border-radius: 20px;
  padding: 24px;
  width: min(90%, 520px);
  box-shadow: 0 24px 60px rgba(15, 26, 43, 0.2);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cookie-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px;
}

.toggle {
  border: 1px solid var(--line);
  background: var(--mist);
  padding: 10px 14px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
}

.toggle[aria-pressed="true"] {
  background: var(--accent);
  color: var(--pearl);
  border-color: var(--accent);
}

.cookie-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

@media (min-width: 900px) {
  .menu-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    height: auto;
    transform: none;
    flex-direction: row;
    background: transparent;
    box-shadow: none;
    padding: 0;
    width: auto;
    max-width: none;
    gap: 22px;
  }

  .nav-overlay {
    display: none;
  }

  .hero {
    padding: 90px 0 100px;
  }

  .hero h1 {
    font-size: 3.1rem;
  }

  .card-list {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 260px;
  }

  .stats {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .stat {
    flex: 1 1 200px;
  }

  .split {
    flex-direction: row;
    justify-content: space-between;
  }

  .split > * {
    flex: 1;
  }

  .split .highlight-panel {
    margin-left: 20px;
  }

  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .cookie-banner .banner-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
