*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --brand-1: #1b3b2f;
  --brand-2: #2f6b4b;
  --brand-3: #f2f6f0;
  --accent: #c68b59;
  --dark: #1d1f1e;
  --muted: #5c6b63;
  --light: #ffffff;
  --panel: #f8faf7;
  --line: #e2e8e0;
  --shadow: 0 14px 35px rgba(27, 59, 47, 0.1);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--dark);
  background: var(--light);
  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;
}

.section {
  padding: 56px 0;
}

.section.tight {
  padding: 36px 0;
}

.section.alt {
  background: var(--panel);
}

.eyebrow {
  color: var(--accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
}

h1,
h2,
h3 {
  line-height: 1.2;
  margin: 0 0 16px 0;
}

h1 {
  font-size: clamp(2rem, 2vw + 1.6rem, 3rem);
}

h2 {
  font-size: clamp(1.5rem, 1.2vw + 1.3rem, 2.2rem);
}

h3 {
  font-size: 1.2rem;
}

p {
  margin: 0 0 16px 0;
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--brand-2);
  color: var(--light);
  font-weight: 600;
  transition: 0.2s ease;
}

.btn:hover {
  background: var(--brand-1);
}

.btn.outline {
  background: transparent;
  color: var(--brand-1);
  border-color: var(--brand-1);
}

.btn.outline:hover {
  color: var(--light);
  background: var(--brand-1);
}

.site-header {
  background: var(--light);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 16px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--brand-1);
}

.logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: var(--brand-2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.logo-mark svg {
  width: 20px;
  height: 20px;
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 10px;
  width: 44px;
  height: 44px;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--brand-1);
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  width: 22px;
  height: 2px;
  background: var(--brand-1);
  left: 0;
  transition: 0.2s ease;
}

.nav-toggle span::before {
  top: -7px;
}

.nav-toggle span::after {
  top: 7px;
}

.nav-menu {
  display: none;
  flex-direction: column;
  gap: 14px;
  padding: 20px;
  background: var(--light);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
  position: absolute;
  right: 4%;
  top: 70px;
  min-width: 220px;
}

.nav-menu[data-open="true"] {
  display: flex;
}

.nav-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nav-links a {
  font-weight: 600;
}

.hero {
  padding: 72px 0 56px;
}

.hero-grid {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero-card {
  background: var(--panel);
  padding: 24px;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.badge {
  padding: 8px 14px;
  background: var(--light);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.9rem;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat-card {
  background: var(--light);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stat-number {
  font-size: 1.8rem;
  color: var(--brand-2);
  font-weight: 700;
}

.grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: var(--light);
  border-radius: 18px;
  padding: 22px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card.highlight {
  background: var(--brand-1);
  color: var(--light);
}

.card.highlight p {
  color: #d7e3da;
}

.icon-circle {
  width: 44px;
  height: 44px;
  background: var(--brand-3);
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.icon-circle svg {
  width: 22px;
  height: 22px;
}

.panel {
  padding: 28px;
  border-radius: 22px;
  background: var(--panel);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.quote {
  font-size: 1.2rem;
  color: var(--brand-1);
  font-weight: 600;
}

.testimonial {
  background: var(--light);
  border-left: 4px solid var(--accent);
  padding: 20px;
  border-radius: 16px;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.step-number {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--brand-2);
  color: var(--light);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.table {
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
}

.table-row {
  display: flex;
  flex-direction: column;
  padding: 16px;
  border-bottom: 1px solid var(--line);
  gap: 6px;
}

.table-row:last-child {
  border-bottom: 0;
}

.cta {
  background: var(--brand-2);
  color: var(--light);
}

.cta p {
  color: #e6f0ea;
}

footer {
  border-top: 1px solid var(--line);
  padding: 32px 0 60px;
  background: var(--light);
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.95rem;
}

.cookie-banner {
  position: fixed;
  inset: auto 16px 16px 16px;
  background: var(--dark);
  color: var(--light);
  padding: 18px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 60;
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-actions .btn {
  background: var(--light);
  color: var(--dark);
}

.cookie-actions .btn.outline {
  background: transparent;
  color: var(--light);
  border-color: var(--light);
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 70;
}

.cookie-modal[data-open="true"] {
  display: flex;
}

.cookie-modal .modal-card {
  background: var(--light);
  padding: 26px;
  border-radius: 20px;
  width: min(520px, 92%);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px 16px;
}

.toggle-row span {
  font-weight: 600;
}

.toggle-row button {
  border: 1px solid var(--brand-2);
  background: transparent;
  color: var(--brand-2);
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 600;
}

.accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.accordion-item {
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}

.accordion-button {
  width: 100%;
  text-align: left;
  padding: 16px;
  background: var(--light);
  border: 0;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.accordion-panel {
  padding: 0 16px 16px;
  color: var(--muted);
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--brand-3);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 0.9rem;
}

.service-price {
  font-weight: 700;
  color: var(--brand-2);
}

.info-block {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px;
  background: var(--panel);
}

.columns {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media (min-width: 800px) {
  .nav-toggle {
    display: none;
  }

  .nav-menu {
    position: static;
    display: flex;
    box-shadow: none;
    border: 0;
    padding: 0;
    background: transparent;
  }

  .nav-links {
    flex-direction: row;
    align-items: center;
    gap: 18px;
  }

  .hero-grid,
  .split,
  .columns {
    flex-direction: row;
    align-items: stretch;
  }

  .hero-grid > * {
    flex: 1;
  }

  .stats {
    flex-direction: row;
  }

  .stats > * {
    flex: 1;
  }

  .grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .grid > * {
    flex: 1 1 calc(50% - 18px);
  }

  .grid.three > * {
    flex: 1 1 calc(33.333% - 18px);
  }

  .table-row {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
  }
}
