@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --ink: #1b2a35;
  --muted: #5a6a75;
  --accent: #1f6a82;
  --accent-soft: #d8eef4;
  --highlight: #f4f1ec;
  --panel: #ffffff;
  --border: #d9e0e5;
  --shadow: 0 18px 40px rgba(27, 42, 53, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: #f7f9fb;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--accent);
  color: #fff;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  z-index: 10;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.container {
  width: min(1120px, 90vw);
  margin: 0 auto;
}

header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 5;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand svg {
  width: 38px;
  height: 38px;
}

.nav-toggle {
  border: 1px solid var(--border);
  background: #fff;
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  font-weight: 600;
}

.nav-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  position: absolute;
  top: 72px;
  right: 5vw;
  width: min(280px, 90vw);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: 0.2s ease;
}

.nav-links.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-links a {
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  font-weight: 500;
}

.nav-links a:hover,
.nav-links a:focus {
  background: var(--accent-soft);
}

main {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  padding: 2.5rem 0 4rem;
}

section {
  background: var(--panel);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 12px 30px rgba(27, 42, 53, 0.08);
}

.hero {
  background: linear-gradient(120deg, #ffffff 0%, #eef7fa 100%);
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.hero-cta .button {
  width: fit-content;
}

.hero-illustration {
  background: #fff;
  border-radius: 16px;
  padding: 1.5rem;
  border: 1px solid var(--border);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent-soft);
  color: var(--accent);
  padding: 0.3rem 0.9rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
}

.card-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.card {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.card h3 {
  margin: 0;
}

.card-meta {
  color: var(--muted);
  font-size: 0.95rem;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.highlight-panel {
  background: var(--accent);
  color: #fff;
}

.highlight-panel h2,
.highlight-panel p,
.highlight-panel li {
  color: #fff;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.feature-item svg {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.stat {
  padding: 1rem;
  border-radius: 14px;
  background: var(--highlight);
}

.stat strong {
  font-size: 1.4rem;
  display: block;
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.testimonial {
  border-left: 4px solid var(--accent);
  padding-left: 1.2rem;
  color: var(--muted);
}

.testimonial span {
  display: block;
  color: var(--ink);
  font-weight: 600;
  margin-top: 0.6rem;
}

.accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1rem 1.2rem;
  border: none;
  background: #fff;
  font-weight: 600;
  cursor: pointer;
}

.faq-answer {
  padding: 0 1.2rem 1rem;
  color: var(--muted);
}

.button {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--accent);
  color: #fff;
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  border: none;
  font-weight: 600;
}

.button.secondary {
  background: #fff;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.service-table {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.service-row {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 1.2rem;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: #fff;
}

.service-price {
  font-weight: 700;
  color: var(--accent);
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.comparison-item {
  padding: 1rem 1.2rem;
  border-radius: 12px;
  background: var(--highlight);
}

.contact-blocks {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.info-panel {
  padding: 1.5rem;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: #fff;
}

footer {
  background: #101b22;
  color: #f8fbfd;
  padding: 3rem 0;
}

footer a {
  color: #f8fbfd;
  opacity: 0.9;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border-radius: 18px;
  padding: 1.5rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  width: min(920px, 90vw);
  display: none;
  flex-direction: column;
  gap: 1rem;
  z-index: 20;
}

.cookie-banner.is-visible {
  display: flex;
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(16, 27, 34, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 25;
  padding: 1.5rem;
}

.cookie-modal.is-visible {
  display: flex;
}

.cookie-modal-content {
  background: #fff;
  border-radius: 18px;
  padding: 2rem;
  width: min(520px, 90vw);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cookie-option {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding: 0.75rem;
  border-radius: 12px;
  background: var(--highlight);
}

.cookie-option input {
  width: 18px;
  height: 18px;
}

@media (min-width: 768px) {
  .nav-toggle {
    display: none;
  }

  .nav-links {
    position: static;
    flex-direction: row;
    padding: 0;
    border: none;
    box-shadow: none;
    width: auto;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    gap: 1rem;
  }

  .hero {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .hero-content,
  .hero-illustration {
    flex: 1;
  }

  .card-grid,
  .stats,
  .testimonials,
  .service-table,
  .comparison,
  .contact-blocks,
  .footer-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card,
  .stat,
  .testimonial,
  .service-row,
  .comparison-item,
  .info-panel {
    flex: 1 1 220px;
  }

  .split {
    flex-direction: row;
  }

  .hero-cta {
    flex-direction: row;
  }

  .cookie-actions {
    flex-direction: row;
    align-items: center;
  }
}
