/* Base styles */
:root {
  --ink: #1b2b2a;
  --muted: #4b5b5b;
  --sand: #f4f1ea;
  --sea: #0f7b6c;
  --sea-dark: #0b5e53;
  --stone: #e4ddd2;
  --sun: #f2b84b;
  --white: #ffffff;
  --radius: 18px;
  --shadow: 0 16px 40px rgba(15, 36, 34, 0.12);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--sand);
  line-height: 1.6;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  border: none;
  background: none;
  color: inherit;
  cursor: pointer;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.section {
  padding: 3.5rem 0;
}

.section.alt {
  background: var(--white);
}

.section.accent {
  background: var(--stone);
}

.section.highlight {
  background: var(--sea);
  color: var(--white);
}

.section-title {
  font-size: 2rem;
  margin-bottom: 1.2rem;
}

.subtitle {
  color: var(--muted);
  max-width: 680px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  background: rgba(15, 123, 108, 0.12);
  color: var(--sea-dark);
  font-size: 0.85rem;
  font-weight: 600;
}

/* Header */
.site-header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 10;
  box-shadow: 0 8px 20px rgba(12, 28, 27, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand svg {
  width: 34px;
  height: 34px;
}

.nav-links {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  background: var(--white);
  position: absolute;
  top: 100%;
  right: 0;
  width: 100%;
  padding: 1.5rem;
  transform: translateY(-10px);
  opacity: 0;
  pointer-events: none;
  transition: 0.2s ease;
  box-shadow: 0 12px 30px rgba(12, 28, 27, 0.12);
}

.nav-links.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.nav-toggle {
  border: 1px solid var(--stone);
  border-radius: 10px;
  padding: 0.4rem 0.6rem;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  background: var(--sea);
  color: var(--white);
  font-weight: 600;
}

/* Hero */
.hero {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.3rem);
  line-height: 1.2;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  background: var(--sea);
  color: var(--white);
  font-weight: 600;
}

.btn.secondary {
  background: var(--white);
  color: var(--sea);
  border: 1px solid var(--sea);
}

/* Cards */
.card-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.card {
  background: var(--white);
  padding: 1.6rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.card.alt {
  background: var(--stone);
}

.card h3 {
  font-size: 1.2rem;
}

/* Feature list */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.8rem;
}

.feature-item {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.75);
}

.feature-item svg {
  width: 38px;
  height: 38px;
}

/* Statistics */
.stats {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.stat {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--white);
  padding: 1rem 1.4rem;
  border-radius: 14px;
  font-weight: 600;
}

.stat span {
  color: var(--sea-dark);
}

/* Testimonials */
.testimonials {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.quote {
  background: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.quote p {
  font-style: italic;
  margin-bottom: 0.8rem;
}

/* FAQ */
.faq {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.faq-item {
  border-radius: 14px;
  background: var(--white);
  padding: 1rem 1.2rem;
  box-shadow: 0 8px 18px rgba(13, 26, 25, 0.08);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
}

.faq-answer {
  margin-top: 0.8rem;
  color: var(--muted);
  display: none;
}

.faq-item.open .faq-answer {
  display: block;
}

/* Services */
.service-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 1.8rem;
}

.service-card {
  background: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.service-card .price {
  font-weight: 700;
  color: var(--sea-dark);
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.comparison-row {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  background: var(--white);
  border-radius: 14px;
  padding: 1rem;
}

/* Contact */
.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.info-block {
  background: var(--white);
  padding: 1.4rem;
  border-radius: 14px;
  box-shadow: var(--shadow);
}

/* Footer */
footer {
  margin-top: auto;
  background: var(--ink);
  color: var(--white);
  padding: 2.5rem 0;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-bottom {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  background: var(--white);
  padding: 1rem;
  border-radius: 16px;
  box-shadow: var(--shadow);
  display: none;
  z-index: 20;
}

.cookie-banner.show {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(13, 26, 25, 0.55);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 30;
  padding: 1.5rem;
}

.cookie-modal.open {
  display: flex;
}

.cookie-panel {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  max-width: 520px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.toggle-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  background: var(--sand);
  padding: 0.8rem 1rem;
  border-radius: 12px;
}

/* Responsive */
@media (min-width: 768px) {
  .nav-links {
    position: static;
    flex-direction: row;
    align-items: center;
    width: auto;
    padding: 0;
    transform: none;
    opacity: 1;
    pointer-events: auto;
    box-shadow: none;
    gap: 1.5rem;
  }

  .nav-toggle {
    display: none;
  }

  .hero {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .hero-actions {
    flex-direction: row;
  }

  .card-grid,
  .feature-list,
  .stats,
  .testimonials,
  .service-list,
  .comparison,
  .contact-grid,
  .footer-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card,
  .feature-item,
  .stat,
  .quote,
  .service-card,
  .comparison-row,
  .info-block {
    flex: 1 1 260px;
  }

  .cookie-actions {
    flex-direction: row;
  }
}
