* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --primary: #1f6f7a;
  --primary-dark: #154a51;
  --accent: #f2b705;
  --accent-soft: #fff4cf;
  --text: #1b1f24;
  --muted: #5f6b73;
  --bg: #f6f8f9;
  --white: #ffffff;
  --border: #e0e5e8;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", "Inter", "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

main {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 3.5rem 0;
}

.section.alt {
  background: var(--bg);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  color: var(--primary);
  font-weight: 600;
}

h1,
h2,
h3 {
  line-height: 1.2;
}

h1 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin-top: 0.7rem;
  margin-bottom: 1.2rem;
}

h2 {
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
}

p {
  color: var(--muted);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  background: var(--primary);
  color: var(--white);
  transition: 0.2s ease;
}

.button.secondary {
  background: var(--white);
  color: var(--primary);
  border-color: var(--primary);
}

.button.accent {
  background: var(--accent);
  color: var(--primary-dark);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(31, 111, 122, 0.15);
}

.site-header {
  position: sticky;
  top: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1rem;
}

.brand {
  display: flex;
  flex-direction: column;
  font-weight: 700;
  color: var(--primary-dark);
}

.brand span {
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 500;
}

.nav-toggle {
  border: 1px solid var(--border);
  background: var(--white);
  padding: 0.45rem 0.65rem;
  border-radius: 8px;
  font-weight: 600;
  color: var(--primary-dark);
}

.nav-links {
  display: none;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 0.8rem;
}

.nav-links a {
  padding: 0.4rem 0;
  color: var(--text);
}

.nav-links a.active {
  color: var(--primary);
  font-weight: 600;
}

.nav-links.open {
  display: flex;
}

@media (min-width: 768px) {
  .nav-toggle {
    display: none;
  }

  .nav-links {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    margin-top: 0;
  }
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero-card {
  background: var(--accent-soft);
  padding: 1.5rem;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.card-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  box-shadow: 0 12px 30px rgba(27, 31, 36, 0.06);
}

.card .icon {
  width: 40px;
  height: 40px;
}

.highlight-panel {
  background: var(--primary);
  color: var(--white);
  padding: 2rem;
  border-radius: 22px;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.highlight-panel p {
  color: rgba(255, 255, 255, 0.85);
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.stat {
  background: var(--white);
  border-radius: 18px;
  padding: 1.2rem;
  border: 1px solid var(--border);
}

.stat strong {
  font-size: 1.6rem;
  color: var(--primary-dark);
}

.quote {
  background: var(--primary-dark);
  color: var(--white);
  padding: 2rem;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.quote span {
  font-weight: 600;
  color: var(--accent);
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.timeline-item {
  border-left: 3px solid var(--accent);
  padding-left: 1rem;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.service-card {
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  background: var(--white);
}

.service-card .price {
  font-weight: 700;
  color: var(--primary-dark);
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.comparison-row {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem;
  border-radius: 16px;
  background: var(--bg);
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.step-number {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--primary-dark);
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1rem;
  background: var(--white);
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  text-align: left;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
}

.faq-answer {
  margin-top: 0.7rem;
  color: var(--muted);
  display: none;
}

.faq-item.open .faq-answer {
  display: block;
}

.footer {
  background: var(--primary-dark);
  color: var(--white);
  padding: 3rem 0;
}

.footer p,
.footer a {
  color: rgba(255, 255, 255, 0.75);
}

.footer-columns {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.cookie-banner {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  background: var(--white);
  border-radius: 16px;
  padding: 1rem;
  border: 1px solid var(--border);
  box-shadow: 0 16px 40px rgba(27, 31, 36, 0.12);
  display: none;
  flex-direction: column;
  gap: 0.8rem;
  z-index: 1200;
}

.cookie-banner.show {
  display: flex;
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 32, 0.55);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  z-index: 1300;
}

.cookie-modal.show {
  display: flex;
}

.cookie-modal-content {
  background: var(--white);
  border-radius: 20px;
  padding: 1.8rem;
  max-width: 520px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.toggle-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem;
  border-radius: 12px;
  background: var(--bg);
}

.toggle-row span {
  font-weight: 600;
}

.toggle-row input {
  width: 42px;
  height: 22px;
}

.simple-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  list-style: none;
  padding-left: 0;
}

.icon-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.icon-list-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.icon-list-item img {
  width: 36px;
}

@media (min-width: 900px) {
  .split {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .split > * {
    flex: 1;
  }

  .card-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 280px;
  }

  .stats {
    flex-direction: row;
  }

  .stat {
    flex: 1;
  }

  .service-list {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-card {
    flex: 1 1 280px;
  }

  .comparison {
    flex-direction: row;
  }

  .comparison-row {
    flex: 1;
  }

  .steps {
    flex-direction: row;
  }

  .step {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-columns {
    flex-direction: row;
    justify-content: space-between;
  }

  .cookie-actions {
    flex-direction: row;
  }
}
