* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #0f1a16;
  --muted: #4f615a;
  --bg: #f5f7f3;
  --surface: #ffffff;
  --accent: #1f7a5a;
  --accent-dark: #15543f;
  --highlight: #dce7df;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:focus,
button:focus,
select:focus,
input:focus,
textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

header {
  background: var(--surface);
  border-bottom: 1px solid #e4ebe7;
  padding: 18px 5vw;
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.95rem;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.85rem;
  background: var(--highlight);
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--muted);
}

main {
  padding: 0 5vw 64px;
}

section {
  padding: 56px 0;
  border-bottom: 1px solid #e4ebe7;
}

section:last-of-type {
  border-bottom: none;
}

.split {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .col {
  flex: 1 1 320px;
}

.hero {
  padding-top: 48px;
  position: relative;
}

.hero-card {
  background: var(--surface);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 18px 40px rgba(15, 26, 22, 0.08);
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
}

.button.secondary {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.media {
  background: #d5e3db;
  border-radius: 18px;
  overflow: hidden;
}

.media.small {
  width: 120px;
  height: 90px;
  border-radius: 12px;
  flex: 0 0 auto;
}

img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.stat-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.stat {
  background: var(--surface);
  padding: 16px 18px;
  border-radius: 14px;
  min-width: 160px;
}

.service-stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-card {
  background: var(--surface);
  border-radius: 16px;
  padding: 18px;
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.service-card .media.small {
  background: #dbe6df;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  background: var(--highlight);
  padding: 6px 12px;
  border-radius: 999px;
  color: var(--muted);
}

.testimonial {
  background: var(--surface);
  padding: 20px;
  border-radius: 16px;
  margin-top: 18px;
}

.form-shell {
  background: var(--surface);
  padding: 24px;
  border-radius: 18px;
  box-shadow: 0 12px 24px rgba(15, 26, 22, 0.08);
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-grid label {
  font-weight: 600;
  font-size: 0.9rem;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #ccd7d0;
  font-size: 1rem;
  background: #fdfdfd;
}

.form-message {
  font-size: 0.9rem;
  color: var(--muted);
}

.list-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.list-columns ul {
  margin: 0;
  padding-left: 18px;
  flex: 1 1 220px;
}

.pricing-table {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  background: var(--surface);
  padding: 16px 18px;
  border-radius: 14px;
}

.price-row span {
  font-weight: 600;
}

.highlight-section {
  background: #23463b
    url("https://images.unsplash.com/photo-1758801304961-f73ee7126207?w=1400&q=80")
    center/cover no-repeat;
  color: #ffffff;
  border-radius: 24px;
  padding: 48px;
  margin-top: 24px;
}

.highlight-section p {
  max-width: 520px;
}

.inline-cta {
  font-weight: 600;
  text-decoration: underline;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: var(--accent);
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 12px 24px rgba(15, 26, 22, 0.2);
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: var(--surface);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 12px 28px rgba(15, 26, 22, 0.18);
  max-width: 320px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  flex: 1;
}

footer {
  background: #0f1a16;
  color: #f1f5f2;
  padding: 48px 5vw;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.footer-grid a {
  color: #f1f5f2;
}

.legal-note {
  margin-top: 24px;
  font-size: 0.9rem;
  color: #c9d6cf;
}

@media (max-width: 860px) {
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
