* {
  box-sizing: border-box;
}

:root {
  --brand-ink: #1b2a35;
  --brand-rose: #f2b9c8;
  --brand-coral: #ff9b7a;
  --brand-mint: #bfe6d4;
  --brand-sand: #fff4e8;
  --brand-sky: #e6f2ff;
  --text-main: #1d2530;
  --text-muted: #54606c;
  --border-soft: #e5e9ee;
  --shadow-soft: 0 12px 30px rgba(27, 42, 53, 0.12);
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--text-main);
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  max-width: 100%;
  display: block;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  padding: 12px 16px;
  background: var(--brand-ink);
  color: #ffffff;
  z-index: 50;
}

.skip-link:focus {
  left: 12px;
  top: 12px;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.header {
  position: sticky;
  top: 0;
  background: #ffffff;
  border-bottom: 1px solid var(--border-soft);
  z-index: 20;
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--brand-ink);
}

.brand-mark {
  width: 36px;
  height: 36px;
  background: var(--brand-rose);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-ink);
  font-weight: 700;
}

.nav-links {
  display: none;
  flex-direction: column;
  gap: 12px;
  background: #ffffff;
  position: absolute;
  left: 0;
  right: 0;
  top: 64px;
  padding: 18px 4%;
  border-bottom: 1px solid var(--border-soft);
}

.nav-links a {
  font-weight: 600;
  color: var(--brand-ink);
}

.nav-toggle {
  background: transparent;
  border: 1px solid var(--border-soft);
  border-radius: 8px;
  padding: 8px 12px;
  font-weight: 600;
  color: var(--brand-ink);
}

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: 20px;
    padding: 0;
    border: none;
  }
}

.hero {
  padding: 60px 0 40px;
  background: var(--brand-sand);
}

.hero-grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.hero-card {
  background: #ffffff;
  padding: 26px;
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--brand-mint);
  font-size: 0.85rem;
  color: var(--brand-ink);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  cursor: pointer;
}

.btn-primary {
  background: var(--brand-ink);
  color: #ffffff;
}

.btn-outline {
  background: transparent;
  border-color: var(--brand-ink);
  color: var(--brand-ink);
}

.section {
  padding: 54px 0;
}

.section-alt {
  background: var(--brand-sky);
}

.section-highlight {
  background: var(--brand-rose);
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 26px;
}

.section-title {
  font-size: clamp(1.6rem, 2.5vw, 2.3rem);
  margin: 0;
  color: var(--brand-ink);
}

.section-subtitle {
  color: var(--text-muted);
  margin: 0;
}

.feature-grid,
.card-grid,
.stats-grid,
.testimonial-grid,
.faq-grid,
.service-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.feature-card,
.service-card,
.testimonial-card,
.faq-item,
.info-card {
  background: #ffffff;
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.feature-card strong,
.service-card strong {
  color: var(--brand-ink);
}

.icon-badge {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--brand-mint);
  display: flex;
  align-items: center;
  justify-content: center;
}

.stats-grid {
  gap: 14px;
}

.stat {
  background: #ffffff;
  border-radius: 14px;
  padding: 18px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid var(--border-soft);
}

.stat span {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--brand-ink);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.panel {
  background: #ffffff;
  border-radius: 18px;
  padding: 24px;
  border: 1px solid var(--border-soft);
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.list li {
  display: flex;
  gap: 10px;
}

.highlight {
  background: var(--brand-ink);
  color: #ffffff;
  padding: 36px 0;
}

.highlight .panel {
  background: transparent;
  border: none;
  padding: 0;
}

.compare-table {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.compare-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px;
  border-radius: 14px;
  border: 1px solid var(--border-soft);
  background: #ffffff;
}

.faq-item button {
  background: none;
  border: none;
  padding: 0;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--brand-ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.faq-item .answer {
  display: none;
  color: var(--text-muted);
}

.faq-item.open .answer {
  display: block;
}

.footer {
  padding: 40px 0;
  background: #1a232b;
  color: #ffffff;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 18px;
}

.footer small {
  color: rgba(255, 255, 255, 0.7);
}

.cookie-banner,
.cookie-modal {
  position: fixed;
  left: 0;
  right: 0;
  background: #ffffff;
  border-top: 1px solid var(--border-soft);
  padding: 16px;
  z-index: 30;
}

.cookie-banner {
  bottom: 0;
  box-shadow: 0 -12px 30px rgba(27, 42, 53, 0.15);
  display: none;
}

.cookie-banner.visible {
  display: block;
}

.cookie-modal {
  top: 50%;
  transform: translateY(-50%);
  margin: 0 auto;
  width: min(600px, 92%);
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
  display: none;
}

.cookie-modal.visible {
  display: block;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  display: none;
  z-index: 25;
}

.modal-backdrop.visible {
  display: block;
}

.cookie-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 16px 0;
}

.cookie-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 12px;
  border-radius: 12px;
  background: var(--brand-sand);
}

.toggle {
  border: 1px solid var(--border-soft);
  background: #ffffff;
  border-radius: 999px;
  padding: 6px 12px;
  font-weight: 600;
  cursor: pointer;
}

.toggle.active {
  background: var(--brand-ink);
  color: #ffffff;
  border-color: var(--brand-ink);
}

.address-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

@media (min-width: 800px) {
  .hero-grid,
  .feature-grid,
  .card-grid,
  .stats-grid,
  .testimonial-grid,
  .service-grid,
  .faq-grid,
  .split {
    flex-direction: row;
  }

  .hero-grid > * {
    flex: 1;
  }

  .feature-grid > *,
  .card-grid > *,
  .service-grid > *,
  .testimonial-grid > * {
    flex: 1;
  }

  .stats-grid > * {
    flex: 1;
  }

  .faq-grid > * {
    flex: 1;
  }

  .split > * {
    flex: 1;
  }

  .footer-links {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .compare-row {
    flex-direction: row;
    align-items: center;
  }
}
