/* Base */
:root {
  --primary: #1c6e8c;
  --primary-dark: #15566c;
  --accent: #e4a74c;
  --surface: #f5f7f8;
  --ink: #1f2a30;
  --muted: #5c6b73;
  --card: #ffffff;
  --highlight: #eef4f7;
  --radius: 18px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

img,
svg {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.section {
  padding: 3.5rem 0;
}

.section.alt {
  background: var(--surface);
}

.section.highlight {
  background: var(--highlight);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  color: var(--primary);
  font-weight: 600;
}

h1,
h2,
h3 {
  line-height: 1.2;
}

h1 {
  font-size: 2.3rem;
  margin: 0.75rem 0 1rem;
}

h2 {
  font-size: 1.9rem;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.3rem;
  margin-bottom: 0.6rem;
}

p {
  color: var(--muted);
  margin-bottom: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.4rem;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-weight: 600;
  border: 2px solid transparent;
  transition: 0.2s ease;
}

.btn.secondary {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn:hover,
.btn:focus {
  background: var(--primary-dark);
  color: #fff;
}

.btn.secondary:hover,
.btn.secondary:focus {
  background: var(--primary);
  color: #fff;
}

/* Navigation */
.site-header {
  background: #fff;
  border-bottom: 1px solid #e6ecef;
  position: sticky;
  top: 0;
  z-index: 10;
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  position: relative;
}

.brand {
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--primary);
}

.nav-toggle {
  background: var(--primary);
  border: none;
  color: #fff;
  padding: 0.6rem 0.9rem;
  border-radius: 10px;
  font-weight: 600;
}

.nav-links {
  list-style: none;
  display: none;
  flex-direction: column;
  gap: 0.6rem;
  position: absolute;
  top: 100%;
  right: 0;
  background: #fff;
  padding: 1rem;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  width: 220px;
}

.nav-links.open {
  display: flex;
}

.nav-links a {
  color: var(--ink);
  font-weight: 600;
}

/* Hero */
.hero {
  padding: 4.5rem 0 3rem;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero-card {
  background: var(--surface);
  padding: 2rem;
  border-radius: var(--radius);
}

.hero-points {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-point {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
}

.hero-point svg {
  flex-shrink: 0;
}

/* Cards and lists */
.card-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.card {
  background: var(--card);
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid #e5ecef;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #fff3df;
  color: #8b5a12;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.feature-item {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
}

.feature-item svg {
  flex-shrink: 0;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.stat {
  background: #fff;
  padding: 1.2rem;
  border-radius: 16px;
  border: 1px solid #e5ecef;
}

.stat strong {
  font-size: 1.6rem;
  color: var(--primary);
}

/* Testimonials */
.testimonial {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.5rem;
  border-left: 4px solid var(--accent);
}

/* Process */
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.step {
  display: flex;
  gap: 1rem;
  background: #fff;
  padding: 1rem 1.2rem;
  border-radius: 14px;
  border: 1px solid #e5ecef;
}

.step-number {
  width: 36px;
  height: 36px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  border: 1px solid #dbe4e9;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: #fff;
  border: none;
  padding: 1rem 1.2rem;
  text-align: left;
  font-weight: 600;
  color: var(--ink);
}

.faq-answer {
  padding: 0 1.2rem 1rem;
  display: none;
  color: var(--muted);
}

.faq-item.open .faq-answer {
  display: block;
}

/* Services */
.service-price {
  font-weight: 700;
  color: var(--primary);
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.comparison-row {
  background: #fff;
  border-radius: 14px;
  padding: 1rem;
  border: 1px solid #e5ecef;
}

/* Contact */
.contact-blocks {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-block {
  background: #fff;
  padding: 1.3rem;
  border-radius: 14px;
  border: 1px solid #e5ecef;
}

/* Footer */
footer {
  background: #0f2f3c;
  color: #e7f0f3;
  padding: 2.5rem 0;
}

footer p,
footer a {
  color: #cfdce2;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  width: min(680px, 92%);
  padding: 1.2rem;
  border-radius: 16px;
  border: 1px solid #dbe4e9;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: none;
  z-index: 20;
}

.cookie-banner.show {
  display: block;
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 0.8rem;
}

/* Modal */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(15, 24, 30, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  z-index: 30;
}

.modal.open {
  display: flex;
}

.modal-content {
  background: #fff;
  border-radius: 18px;
  padding: 1.8rem;
  width: min(620px, 92%);
}

.modal-content ul {
  margin: 1rem 0;
  padding-left: 1.2rem;
  color: var(--muted);
}

.modal-actions {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

/* Responsive */
@media (min-width: 768px) {
  h1 {
    font-size: 2.8rem;
  }

  .nav-toggle {
    display: none;
  }

  .nav-links {
    position: static;
    display: flex;
    flex-direction: row;
    gap: 1.2rem;
    box-shadow: none;
    width: auto;
    padding: 0;
  }

  .hero-inner {
    flex-direction: row;
    align-items: center;
  }

  .card-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 260px;
  }

  .feature-list {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .feature-item {
    flex: 1 1 240px;
  }

  .stats {
    flex-direction: row;
  }

  .stat {
    flex: 1 1 200px;
  }

  .process-steps {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .step {
    flex: 1 1 240px;
  }

  .comparison {
    flex-direction: row;
  }

  .comparison-row {
    flex: 1 1 220px;
  }

  .contact-blocks {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .contact-block {
    flex: 1 1 260px;
  }

  .cookie-actions,
  .modal-actions {
    flex-direction: row;
  }
}
