*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --bg: #f7f5f2;
  --text: #1e1f23;
  --muted: #5c6169;
  --primary: #2a5c7a;
  --secondary: #c97b3d;
  --accent: #1f7a6b;
  --light: #ffffff;
  --border: #e1d9ce;
  --shadow: 0 14px 30px rgba(30, 31, 35, 0.12);
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

img,
svg {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 90%);
  margin: 0 auto;
}

.site-header {
  background: var(--light);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 10;
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1rem;
}

.logo {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav-toggle {
  border: 1px solid var(--primary);
  background: transparent;
  color: var(--primary);
  padding: 0.5rem 1rem;
  border-radius: 999px;
  cursor: pointer;
}

.nav-links {
  display: none;
  flex-direction: column;
  gap: 0.75rem;
  background: var(--light);
  position: absolute;
  top: 100%;
  right: 5%;
  left: 5%;
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: var(--shadow);
}

.nav-links.is-open {
  display: flex;
}

.nav-links a {
  font-weight: 500;
}

main {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  padding: 2.5rem 0 4rem;
}

.hero {
  background: var(--light);
  border-radius: 1.5rem;
  padding: 2.5rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero .hero-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.section {
  background: var(--light);
  border-radius: 1.5rem;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  box-shadow: var(--shadow);
}

.section--alt {
  background: #fdfaf6;
  border: 1px solid var(--border);
  box-shadow: none;
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.muted {
  color: var(--muted);
}

.grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.card {
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  padding: 1.5rem;
  background: var(--light);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.card--highlight {
  border-color: var(--accent);
  background: rgba(31, 122, 107, 0.08);
}

.icon-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(42, 92, 122, 0.1);
  color: var(--primary);
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.stat-item {
  border-left: 4px solid var(--secondary);
  padding-left: 1rem;
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  padding: 1.5rem;
  background: #fffdf9;
}

.highlight-panel {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  background: rgba(201, 123, 61, 0.1);
  border-radius: 1.5rem;
  padding: 2rem;
}

.values {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.values .value-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.comparison .row {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  border-bottom: 1px dashed var(--border);
  padding-bottom: 1rem;
}

.process {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.process-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 1rem;
  overflow: hidden;
  background: var(--light);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: 1rem 1.25rem;
  font-weight: 600;
  cursor: pointer;
}

.faq-answer {
  display: none;
  padding: 0 1.25rem 1.25rem;
  color: var(--muted);
}

.faq-item.is-open .faq-answer {
  display: block;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  background: var(--primary);
  color: var(--light);
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--primary);
  color: var(--primary);
}

.btn-ghost {
  background: transparent;
  border: none;
  color: var(--muted);
}

.service-price {
  font-weight: 700;
  color: var(--secondary);
}

.site-footer {
  background: #1e1f23;
  color: #f4f4f4;
  padding: 2.5rem 0;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.95rem;
}

.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 5%;
  right: 5%;
  background: var(--light);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: var(--shadow);
  display: none;
  flex-direction: column;
  gap: 1rem;
  z-index: 20;
}

.cookie-banner.is-visible {
  display: flex;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(30, 31, 35, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 30;
  padding: 1.5rem;
}

.modal.is-visible {
  display: flex;
}

.modal-content {
  background: var(--light);
  border-radius: 1.5rem;
  padding: 2rem;
  max-width: 540px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.info-block {
  border-left: 4px solid var(--primary);
  padding-left: 1rem;
  color: var(--muted);
}

@media (min-width: 768px) {
  .nav-toggle {
    display: none;
  }

  .nav-links {
    position: static;
    display: flex;
    flex-direction: row;
    background: transparent;
    padding: 0;
    box-shadow: none;
  }

  .hero {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .hero .hero-content {
    flex: 1;
  }

  .grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 280px;
  }

  .stats {
    flex-direction: row;
  }

  .stat-item {
    flex: 1;
  }

  .process {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .process-step {
    flex: 1 1 260px;
  }

  .comparison .row {
    flex-direction: row;
    justify-content: space-between;
  }

  .footer-content {
    flex-direction: row;
    justify-content: space-between;
  }
}
