* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #0f1b1a;
  --bg-alt: #152725;
  --bg-soft: #1c332f;
  --text: #f5f7f6;
  --muted: #c7d2cf;
  --accent: #62d2a2;
  --accent-dark: #3aa77a;
  --card: #1a2f2c;
  --border: #2a4540;
  --warning: #f2c16b;
}

html {
  scroll-behavior: smooth;
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--text);
  background-color: var(--bg);
}

body {
  min-height: 100vh;
  line-height: 1.6;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

main {
  display: flex;
  flex-direction: column;
  gap: 64px;
  padding-bottom: 80px;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.section {
  padding: 56px 0;
}

.section-alt {
  background: var(--bg-alt);
}

.section-soft {
  background: var(--bg-soft);
}

.section-accent {
  background: linear-gradient(140deg, #17302c 0%, #1d3d36 100%);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  color: var(--accent);
  margin-bottom: 12px;
}

h1,
h2,
h3,
h4 {
  font-weight: 600;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.1rem, 3.5vw, 3.2rem);
  margin-bottom: 16px;
}

h2 {
  font-size: clamp(1.6rem, 2.6vw, 2.4rem);
  margin-bottom: 16px;
}

h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

p {
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  background: var(--accent);
  color: #082018;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn:hover,
.btn:focus {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--accent);
}

.btn-light {
  background: #f2f7f5;
  color: #0f1b1a;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(15, 27, 26, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 1.05rem;
}

.brand svg {
  width: 32px;
  height: 32px;
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: 10px;
  padding: 8px 10px;
}

.nav-menu {
  position: absolute;
  top: 70px;
  right: 4vw;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px;
  display: none;
  flex-direction: column;
  gap: 12px;
  width: min(260px, 90vw);
}

.nav-menu.open {
  display: flex;
}

.nav-menu a {
  padding: 8px 12px;
  border-radius: 10px;
  transition: background 0.2s ease;
}

.nav-menu a:hover,
.nav-menu a:focus {
  background: rgba(98, 210, 162, 0.15);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero-card {
  background: var(--card);
  padding: 24px;
  border-radius: 18px;
  border: 1px solid var(--border);
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.icon-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.icon-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.02);
  padding: 18px;
  border-radius: 16px;
  border: 1px solid var(--border);
}

.icon-item svg {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--muted);
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat {
  padding: 18px;
  border-radius: 16px;
  background: rgba(98, 210, 162, 0.08);
  border: 1px solid rgba(98, 210, 162, 0.2);
}

.stat strong {
  font-size: 1.6rem;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-left: 2px solid var(--border);
  padding-left: 18px;
}

.timeline-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.quote {
  font-size: 1.2rem;
  font-style: italic;
  color: #f4f8f6;
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.testimonial {
  padding: 20px;
  background: var(--card);
  border-radius: 16px;
  border: 1px solid var(--border);
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(98, 210, 162, 0.12);
  border: 1px solid rgba(98, 210, 162, 0.3);
  color: var(--muted);
  font-size: 0.9rem;
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.comparison-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px;
  border-radius: 16px;
  border: 1px solid var(--border);
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: transparent;
  color: var(--text);
  border: none;
  padding: 16px 18px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question span {
  color: var(--accent);
}

.faq-answer {
  display: none;
  padding: 0 18px 16px;
  color: var(--muted);
}

.faq-item.open .faq-answer {
  display: block;
}

.cta {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

.footer {
  background: #0b1413;
  padding: 40px 0 60px;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer a {
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: #10201d;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px;
  width: min(620px, 92vw);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 60;
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(8, 12, 11, 0.7);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 70;
}

.cookie-modal.open {
  display: flex;
}

.cookie-panel {
  background: var(--card);
  border-radius: 18px;
  border: 1px solid var(--border);
  padding: 24px;
  width: min(560px, 92vw);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cookie-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cookie-option {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.info-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.info-block {
  background: var(--card);
  border-radius: 16px;
  border: 1px solid var(--border);
  padding: 18px;
}

.service-price {
  color: var(--accent);
  font-weight: 600;
  font-size: 1.05rem;
}

@media (min-width: 760px) {
  .hero {
    flex-direction: row;
    align-items: stretch;
  }

  .hero-card {
    flex: 1;
  }

  .hero-actions {
    flex-direction: row;
  }

  .icon-row,
  .cards,
  .stats,
  .testimonials,
  .comparison,
  .info-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .icon-item,
  .card,
  .stat,
  .testimonial,
  .comparison-row,
  .info-block {
    flex: 1 1 260px;
  }

  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }

  .cookie-actions {
    flex-direction: row;
    justify-content: flex-end;
  }

  .nav-menu {
    position: static;
    display: flex;
    flex-direction: row;
    background: transparent;
    border: none;
    padding: 0;
    width: auto;
  }

  .nav-toggle {
    display: none;
  }
}
