* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1b2230;
  --ink-soft: #2e3a52;
  --accent: #c48a2c;
  --accent-dark: #915f17;
  --paper: #f7f3ec;
  --mist: #eef1f4;
  --sage: #3f5a4a;
  --sand: #fff8f0;
  --line: #d6dbe2;
  --white: #ffffff;
  --shadow: 0 18px 40px rgba(27, 34, 48, 0.12);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  position: static;
  width: auto;
  height: auto;
  padding: 0.8rem 1rem;
  background: var(--accent);
  color: var(--white);
}

header {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 20;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.logo span {
  font-size: 1.05rem;
}

.nav-toggle {
  border: 1px solid var(--line);
  background: var(--white);
  padding: 0.5rem 0.7rem;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
}

.nav-links {
  display: none;
  flex-direction: column;
  gap: 0.7rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1rem;
  box-shadow: var(--shadow);
  position: absolute;
  top: 72px;
  right: 4vw;
  width: min(280px, 90vw);
}

.nav-links a {
  padding: 0.4rem 0.2rem;
}

body.nav-open .nav-links {
  display: flex;
}

@media (min-width: 900px) {
  .nav-toggle {
    display: none;
  }

  .nav-links {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1.6rem;
    padding: 0;
    border: none;
    box-shadow: none;
    width: auto;
  }
}

main {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.section {
  padding: 2.8rem 0;
}

.section-alt {
  background: var(--mist);
}

.section-sand {
  background: var(--sand);
}

.section-tight {
  padding: 1.8rem 0;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: stretch;
}

.hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1.2;
}

.hero p {
  font-size: 1.05rem;
  color: var(--ink-soft);
}

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 900px) {
  .split {
    flex-direction: row;
    align-items: center;
  }
}

.card-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 700px) {
  .card-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

.card {
  flex: 1 1 260px;
  background: var(--white);
  padding: 1.6rem;
  border-radius: 16px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.card h3 {
  font-size: 1.1rem;
}

.taglist {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.tag {
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--white);
  font-size: 0.9rem;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

@media (min-width: 800px) {
  .stats {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

.stat {
  flex: 1 1 200px;
  background: var(--white);
  padding: 1.2rem 1.4rem;
  border-radius: 14px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.stat strong {
  font-size: 1.5rem;
}

.quote {
  background: var(--white);
  padding: 2rem;
  border-radius: 18px;
  border-left: 6px solid var(--accent);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--white);
  padding: 1rem 1.2rem;
  border-radius: 12px;
  border: 1px solid var(--line);
}

.feature svg {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
}

.highlight-panel {
  background: var(--ink);
  color: var(--white);
  padding: 2.2rem;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  list-style: none;
}

.list li::before {
  content: "•";
  color: var(--accent);
  display: inline-block;
  width: 1rem;
  margin-left: -1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  background: var(--accent);
  color: var(--white);
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.btn-secondary {
  background: var(--ink);
}

.btn-ghost {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink);
}

.buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.divider {
  border: none;
  border-top: 1px solid var(--line);
  margin: 1.4rem 0;
}

.breadcrumbs {
  font-size: 0.9rem;
  color: var(--ink-soft);
  padding: 1rem 0 0;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.service-card .price {
  font-weight: 700;
  color: var(--accent-dark);
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 800px) {
  .comparison {
    flex-direction: row;
  }
}

.comparison .card {
  flex: 1 1 300px;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  padding: 0.8rem 1rem;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  padding: 0.4rem 0;
}

.faq-answer {
  display: none;
  color: var(--ink-soft);
  padding-top: 0.5rem;
}

.faq-item[aria-expanded="true"] .faq-answer {
  display: block;
}

.footer {
  background: var(--ink);
  color: var(--white);
  padding: 2.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.footer a {
  color: var(--white);
}

.footer-columns {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

@media (min-width: 800px) {
  .footer-columns {
    flex-direction: row;
    justify-content: space-between;
  }
}

.cookie-banner {
  position: fixed;
  bottom: 1.2rem;
  left: 50%;
  transform: translateX(-50%);
  width: min(960px, 94vw);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 1.2rem;
  display: none;
  flex-direction: column;
  gap: 0.8rem;
  z-index: 30;
}

.cookie-banner.is-visible {
  display: flex;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(27, 34, 48, 0.45);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  z-index: 40;
}

.cookie-modal.is-visible {
  display: flex;
}

.cookie-panel {
  background: var(--white);
  border-radius: 18px;
  padding: 1.6rem;
  width: min(540px, 92vw);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cookie-options {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.cookie-options label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.note {
  font-size: 0.92rem;
  color: var(--ink-soft);
}
