* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #111217;
  --muted: #5b6472;
  --accent: #1c7f5a;
  --accent-dark: #14563f;
  --surface: #f6f4ef;
  --surface-strong: #efe9dd;
  --line: #d8d2c7;
  --hero: #0f3b2a;
  --soft: #faf8f3;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 16px;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 8%;
  border-bottom: 1px solid var(--line);
  background: #ffffff;
}

.nav__brand {
  font-weight: 700;
  letter-spacing: 0.02em;
}

.nav__links {
  display: flex;
  gap: 18px;
  font-size: 0.95rem;
}

.nav__links a {
  color: var(--muted);
}

.hero {
  background: var(--hero);
  color: #ffffff;
  padding: 56px 8% 72px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 64px 8%;
}

.split--reverse {
  flex-direction: column;
}

.split__text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.split__text h1,
.split__text h2 {
  margin: 0;
  font-weight: 700;
  line-height: 1.2;
}

.split__text p {
  margin: 0;
  color: var(--muted);
}

.split__media {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  color: #b8d9c8;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn--light {
  background: #ffffff;
  color: var(--hero);
}

.btn--dark {
  background: var(--accent);
  color: #ffffff;
}

.btn--ghost {
  border-color: var(--accent);
  color: var(--accent);
  background: transparent;
}

.btn:hover {
  transform: translateY(-1px);
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.badge {
  border: 1px solid #ffffff44;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
}

.panel {
  background: var(--soft);
  border-radius: 22px;
  padding: 28px;
  border: 1px solid var(--line);
}

.panel--dark {
  background: #1a2c25;
  color: #f4f1ea;
  border-color: #2a443a;
}

.panel h3 {
  margin-top: 0;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid var(--line);
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.timeline__item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.timeline__index {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price {
  font-weight: 700;
  color: var(--accent-dark);
  font-size: 1.1rem;
}

.sticky-cta {
  position: sticky;
  top: 18px;
  align-self: flex-start;
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid var(--line);
  padding: 16px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form label {
  font-weight: 600;
  font-size: 0.9rem;
}

.form input,
.form select,
.form textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-size: 1rem;
}

.form button {
  border: none;
  cursor: pointer;
}

.footer {
  background: var(--surface);
  padding: 48px 8%;
  margin-top: auto;
}

.footer__grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--muted);
}

.cookie {
  position: fixed;
  bottom: 18px;
  left: 18px;
  right: 18px;
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.12);
  display: none;
  z-index: 40;
}

.cookie__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
}

.content {
  padding: 56px 8%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.content h1,
.content h2 {
  margin: 0;
}

.content p {
  margin: 0;
  color: var(--muted);
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.service-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.inline-cta {
  color: var(--accent-dark);
  text-decoration: underline;
  font-weight: 600;
}

@media (min-width: 900px) {
  .split {
    flex-direction: row;
    align-items: center;
  }

  .split--reverse {
    flex-direction: row-reverse;
  }

  .stats {
    flex-direction: row;
  }

  .cards {
    flex-direction: row;
  }

  .footer__grid {
    flex-direction: row;
    justify-content: space-between;
  }

  .contact-grid {
    flex-direction: row;
  }

  .service-grid {
    flex-direction: row;
  }
}
