* {
  box-sizing: border-box;
}

:root {
  --ink: #1f2d3d;
  --muted: #5b6775;
  --brand: #3a6ea5;
  --accent: #f2b705;
  --light: #f6f2ea;
  --surface: #ffffff;
  --panel: #eef3f8;
  --shadow: rgba(31, 45, 61, 0.12);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--surface);
  line-height: 1.6;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  cursor: pointer;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.section {
  padding: 3.5rem 0;
}

.section.alt {
  background: var(--panel);
}

.section.highlight {
  background: var(--light);
}

.section .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.section h2 {
  font-size: clamp(1.6rem, 2vw, 2.2rem);
  margin: 0 0 1rem;
}

.section p {
  margin: 0 0 1rem;
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.3rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--brand);
  color: #fff;
  font-weight: 600;
}

.btn.secondary {
  background: transparent;
  color: var(--brand);
  border-color: var(--brand);
}

.btn.ghost {
  background: transparent;
  border-color: transparent;
  color: var(--ink);
}

header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--surface);
  border-bottom: 1px solid rgba(31, 45, 61, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  font-size: 1.1rem;
}

.brand svg {
  width: 32px;
  height: 32px;
}

.nav-toggle {
  background: transparent;
  border: 1px solid rgba(31, 45, 61, 0.2);
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
}

.nav-links {
  display: none;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1rem 0 0;
}

.nav-links a {
  color: var(--muted);
  font-weight: 500;
}

.nav-links a:hover,
.nav-links a:focus {
  color: var(--ink);
}

body.nav-open .nav-links {
  display: flex;
}

@media (min-width: 900px) {
  .nav-toggle {
    display: none;
  }

  .nav-links {
    display: flex;
    flex-direction: row;
    padding: 0;
    gap: 1.5rem;
  }
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero h1 {
  font-size: clamp(2rem, 3vw, 3rem);
  margin: 0 0 1rem;
}

.hero p {
  font-size: 1.1rem;
}

.hero-card {
  background: var(--panel);
  padding: 1.5rem;
  border-radius: 20px;
  box-shadow: 0 20px 40px -30px var(--shadow);
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.card {
  flex: 1 1 220px;
  background: var(--surface);
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 12px 24px -18px var(--shadow);
  border: 1px solid rgba(31, 45, 61, 0.08);
}

.card h3 {
  margin: 0 0 0.75rem;
}

.icon-badge {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--light);
  margin-bottom: 0.75rem;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.feature-item svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.stat {
  flex: 1 1 180px;
  background: var(--surface);
  border-radius: 14px;
  padding: 1.25rem;
  border: 1px solid rgba(31, 45, 61, 0.08);
}

.stat strong {
  display: block;
  font-size: 1.6rem;
  color: var(--brand);
}

.testimonial {
  background: var(--surface);
  border-radius: 18px;
  padding: 1.5rem;
  border-left: 4px solid var(--accent);
  box-shadow: 0 12px 24px -18px var(--shadow);
}

.testimonial span {
  display: block;
  margin-top: 1rem;
  font-weight: 600;
  color: var(--ink);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 900px) {
  .split {
    flex-direction: row;
    align-items: center;
  }
}

.highlight-panel {
  background: var(--brand);
  color: #fff;
  padding: 2rem;
  border-radius: 20px;
}

.highlight-panel p {
  color: rgba(255, 255, 255, 0.85);
}

.quote {
  font-size: 1.2rem;
  font-style: italic;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--surface);
  padding: 1rem 1.25rem;
  border-radius: 14px;
  border: 1px solid rgba(31, 45, 61, 0.08);
}

.step-number {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  border-radius: 14px;
  border: 1px solid rgba(31, 45, 61, 0.08);
  background: var(--surface);
}

.faq-item button {
  width: 100%;
  background: transparent;
  border: none;
  padding: 1rem 1.25rem;
  text-align: left;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item .answer {
  padding: 0 1.25rem 1rem;
  display: none;
  color: var(--muted);
}

.faq-item.is-open .answer {
  display: block;
}

.service-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.service-card {
  border-radius: 18px;
  padding: 1.5rem;
  border: 1px solid rgba(31, 45, 61, 0.08);
  background: var(--surface);
}

.service-card .price {
  font-weight: 700;
  color: var(--brand);
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.comparison-row {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem;
  border-radius: 14px;
  background: var(--panel);
}

@media (min-width: 900px) {
  .comparison-row {
    flex-direction: row;
    justify-content: space-between;
  }
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-card {
  background: var(--surface);
  border-radius: 16px;
  padding: 1.25rem;
  border: 1px solid rgba(31, 45, 61, 0.08);
}

footer {
  padding: 2.5rem 0;
  background: var(--ink);
  color: #fff;
}

footer a {
  color: rgba(255, 255, 255, 0.8);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  background: var(--surface);
  border-radius: 16px;
  padding: 1rem 1.25rem;
  box-shadow: 0 24px 48px -32px var(--shadow);
  border: 1px solid rgba(31, 45, 61, 0.1);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  z-index: 30;
}

.cookie-banner.is-hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(31, 45, 61, 0.55);
  z-index: 40;
}

.cookie-modal.is-hidden {
  display: none;
}

.modal-content {
  background: var(--surface);
  border-radius: 20px;
  padding: 1.5rem;
  width: min(560px, 100%);
  box-shadow: 0 24px 48px -30px var(--shadow);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.cookie-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-top: 1px solid rgba(31, 45, 61, 0.08);
}

.toggle {
  background: var(--panel);
  border: 1px solid rgba(31, 45, 61, 0.15);
  border-radius: 999px;
  padding: 0.3rem 0.75rem;
  font-weight: 600;
  color: var(--muted);
}

.toggle[aria-pressed="true"] {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
