* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1b1f2a;
  --muted: #5f6b7a;
  --accent: #1b6f7a;
  --accent-2: #0f3e4a;
  --surface: #f6f7f9;
  --panel: #ffffff;
  --border: #e3e6eb;
  --highlight: #eaf3f4;
  --warning: #f7efe2;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  display: block;
}

main {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.container {
  width: min(1140px, 92vw);
  margin: 0 auto;
}

.section {
  padding: 2.5rem 0;
}

.section-soft {
  background: var(--surface);
}

.section-highlight {
  background: var(--highlight);
}

.section-panel {
  background: var(--panel);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.eyebrow {
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 0.6rem;
}

h1,
h2,
h3 {
  line-height: 1.2;
  font-weight: 600;
}

h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 0.9rem;
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.25rem;
  margin-bottom: 0.6rem;
}

p {
  color: var(--muted);
}

.lead {
  font-size: 1.1rem;
  color: #2b3342;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  gap: 0.4rem;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button-primary {
  background: var(--accent);
  color: #ffffff;
  box-shadow: 0 12px 30px rgba(27, 111, 122, 0.18);
}

.button-secondary {
  border-color: var(--accent);
  color: var(--accent);
  background: #ffffff;
}

.button-ghost {
  border-color: var(--border);
  color: var(--ink);
  background: #ffffff;
}

.button:hover {
  transform: translateY(-2px);
}

header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #ffffff;
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 700;
  color: var(--accent-2);
}

.brand-mark {
  width: 34px;
  height: 34px;
}

.nav-links {
  display: none;
  flex-direction: column;
  gap: 1rem;
  background: #ffffff;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  padding: 1.5rem 1.5rem 2rem;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 18px 35px rgba(15, 62, 74, 0.08);
}

.nav-links a {
  font-weight: 600;
  color: var(--ink);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.menu-toggle {
  background: none;
  border: 1px solid var(--border);
  border-radius: 999px;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  background: var(--ink);
  position: relative;
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 2px;
  background: var(--ink);
  left: 0;
}

.menu-toggle span::before {
  top: -6px;
}

.menu-toggle span::after {
  top: 6px;
}

.nav-open .nav-links {
  display: flex;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.card-grid {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.card {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--highlight);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.split-panel {
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid var(--border);
  padding: 1.6rem;
}

.stat-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.stat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.2rem;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid var(--border);
}

.stat strong {
  font-size: 1.4rem;
  color: var(--accent-2);
}

.quote {
  border-left: 3px solid var(--accent);
  padding-left: 1.2rem;
  font-style: italic;
  color: var(--ink);
}

.list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.list li {
  list-style: none;
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  color: var(--muted);
}

.list li span {
  color: var(--accent);
  font-weight: 700;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.tag {
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #ffffff;
  font-size: 0.88rem;
  color: var(--muted);
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.comparison-item {
  padding: 1.2rem;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: #ffffff;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  background: #ffffff;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1rem 1.3rem;
  background: none;
  border: none;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-answer {
  display: none;
  padding: 0 1.3rem 1.2rem;
  color: var(--muted);
}

.faq-item.open .faq-answer {
  display: block;
}

.testimonial {
  padding: 1.4rem;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid var(--border);
}

.testimonial span {
  display: block;
  margin-top: 0.8rem;
  font-weight: 600;
  color: var(--accent-2);
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.timeline-item {
  padding: 1.1rem 1.2rem;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid var(--border);
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.4rem;
  background: #ffffff;
}

.price {
  font-weight: 700;
  color: var(--accent-2);
}

.info-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.info-block {
  border-radius: 16px;
  border: 1px solid var(--border);
  padding: 1.4rem;
  background: #ffffff;
}

.footer {
  padding: 2.5rem 0 3rem;
  border-top: 1px solid var(--border);
  background: #ffffff;
}

.footer-top {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links a {
  color: var(--muted);
}

.footer-bottom {
  margin-top: 1.8rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  width: min(920px, 92vw);
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.2rem;
  box-shadow: 0 20px 40px rgba(15, 62, 74, 0.18);
  display: none;
  flex-direction: column;
  gap: 1rem;
  z-index: 30;
}

.cookie-banner.show {
  display: flex;
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(15, 62, 74, 0.45);
  z-index: 40;
  padding: 1.5rem;
}

.modal.show {
  display: flex;
}

.modal-panel {
  background: #ffffff;
  border-radius: 18px;
  padding: 1.6rem;
  width: min(640px, 94vw);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.modal-options {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.switch {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.8rem 1rem;
}

.switch input {
  width: 18px;
  height: 18px;
}

.mobile-only {
  display: inline-flex;
}

.desktop-only {
  display: none;
}

@media (min-width: 820px) {
  .nav {
    position: relative;
  }

  .nav-links {
    position: static;
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    padding: 0;
    border: none;
    box-shadow: none;
  }

  .menu-toggle {
    display: none;
  }

  .desktop-only {
    display: inline-flex;
  }

  .mobile-only {
    display: none;
  }

  .hero {
    flex-direction: row;
    align-items: center;
  }

  .hero-card {
    flex: 1.1;
  }

  .hero-visual {
    flex: 0.9;
  }

  .card-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card,
  .testimonial,
  .service-card {
    flex: 1 1 calc(50% - 0.6rem);
  }

  .split {
    flex-direction: row;
    align-items: flex-start;
  }

  .split > * {
    flex: 1;
  }

  .stat-list {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .stat {
    flex: 1 1 calc(50% - 0.6rem);
  }

  .comparison {
    flex-direction: row;
  }

  .comparison-item {
    flex: 1;
  }

  .info-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .info-block {
    flex: 1 1 calc(50% - 0.75rem);
  }

  .footer-top {
    flex-direction: row;
    justify-content: space-between;
  }

  .cookie-actions {
    flex-direction: row;
    justify-content: flex-end;
  }
}
