*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --bg: #f6f3ef;
  --bg-alt: #efe9e1;
  --text: #1f1f1f;
  --muted: #5a554d;
  --brand: #2b5b4d;
  --brand-dark: #20463b;
  --accent: #c47b3b;
  --card: #ffffff;
  --border: #ded7ce;
  --success: #2f7a52;
  --shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
}

img,
svg {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 243, 239, 0.96);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(8px);
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.brand-badge {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 15px;
}

.nav-links a {
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  border-bottom-color: var(--accent);
}

.nav-toggle {
  border: 1px solid var(--border);
  background: var(--card);
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 600;
}

.nav-backdrop {
  display: none;
}

.menu-open .nav-backdrop {
  display: block;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 40;
}

.menu-open .nav-links {
  display: flex;
}

main {
  padding-bottom: 60px;
}

.section {
  padding: 52px 0;
}

.section.alt {
  background: var(--bg-alt);
}

.section-heading {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(24px, 3vw, 34px);
}

.section-heading p {
  margin: 0;
  color: var(--muted);
}

.hero {
  padding: 64px 0 40px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero h1 {
  font-size: clamp(30px, 4vw, 44px);
  margin: 0;
}

.hero p {
  color: var(--muted);
  margin: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  cursor: pointer;
}

.button.primary {
  background: var(--brand);
  color: #fff;
}

.button.secondary {
  border-color: var(--brand);
  color: var(--brand);
  background: transparent;
}

.button.ghost {
  border-color: var(--border);
  background: #fff;
}

.card-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 22px;
  box-shadow: var(--shadow);
}

.card h3 {
  margin: 0 0 10px;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.icon-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.icon-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #fff;
  font-size: 14px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.highlight-panel {
  background: var(--brand);
  color: #fff;
  border-radius: 24px;
  padding: 28px;
}

.highlight-panel p {
  color: rgba(255, 255, 255, 0.86);
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat-item {
  padding: 18px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--border);
}

.stat-item strong {
  display: block;
  font-size: 22px;
}

.testimonial {
  border-left: 4px solid var(--accent);
  padding-left: 18px;
  color: var(--muted);
}

.testimonial span {
  display: block;
  font-weight: 600;
  color: var(--text);
  margin-top: 8px;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.timeline-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.timeline-marker {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  margin-top: 6px;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border-radius: 16px;
  border: 1px solid var(--border);
  background: #fff;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 16px 18px;
  background: transparent;
  border: none;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

.faq-answer {
  padding: 0 18px 16px;
  color: var(--muted);
}

.faq-question span {
  font-size: 18px;
  color: var(--accent);
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-card {
  background: #fff;
  border-radius: 18px;
  border: 1px solid var(--border);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--muted);
}

.price-tag {
  background: var(--bg-alt);
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 600;
  color: var(--brand-dark);
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.comparison-item {
  padding: 18px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: #fff;
}

.comparison-item h4 {
  margin: 0 0 8px;
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-block {
  background: #fff;
  border-radius: 18px;
  border: 1px solid var(--border);
  padding: 20px;
}

.footer {
  background: var(--brand-dark);
  color: #fff;
  padding: 40px 0;
}

.footer a {
  color: #fff;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer small {
  color: rgba(255, 255, 255, 0.7);
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow);
  display: none;
  z-index: 60;
}

.cookie-banner.active {
  display: block;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4);
  z-index: 70;
}

.cookie-modal.active {
  display: flex;
}

.cookie-modal-content {
  background: #fff;
  border-radius: 18px;
  padding: 24px;
  width: min(520px, 90%);
  border: 1px solid var(--border);
}

.cookie-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}

.cookie-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--bg-alt);
  font-size: 13px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

@media (min-width: 768px) {
  .nav-toggle {
    display: none;
  }

  .nav-links {
    gap: 24px;
  }

  .hero-content,
  .split,
  .card-grid,
  .stats,
  .comparison,
  .contact-grid,
  .footer-grid {
    flex-direction: row;
  }

  .hero-content > * {
    flex: 1;
  }

  .card-grid > *,
  .stats > *,
  .comparison > *,
  .contact-grid > * {
    flex: 1;
  }

  .footer-grid > * {
    flex: 1;
  }
}

@media (max-width: 767px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 70px;
    right: 16px;
    left: 16px;
    flex-direction: column;
    background: #fff;
    padding: 18px;
    border-radius: 18px;
    border: 1px solid var(--border);
    z-index: 45;
  }
}
