* {
  box-sizing: border-box;
}

:root {
  --ink: #0f1a12;
  --mist: #f4f6f2;
  --moss: #1f5b3c;
  --leaf: #7bbf6a;
  --stone: #dde3da;
  --clay: #8b6f4f;
  --river: #2f7c8f;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--mist);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 14px;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.top-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0;
  gap: 24px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.brand-mark {
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: #fff;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn.light {
  background: transparent;
  color: var(--ink);
}

.btn.secondary {
  background: var(--river);
  border-color: var(--river);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(15, 26, 18, 0.18);
}

.hero {
  position: relative;
  padding: 60px 0 90px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 40px;
  right: -80px;
  width: 55%;
  height: 75%;
  background: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1400&q=80")
    center/cover no-repeat;
  border-radius: 28px;
  opacity: 0.85;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 540px;
  position: relative;
  z-index: 1;
}

.hero-card {
  background: #fff;
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0 18px 40px rgba(15, 26, 18, 0.12);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.section {
  padding: 70px 0;
  position: relative;
}

.section.tint {
  background: #fff;
}

.section.alt {
  background: var(--stone);
}

.asym-wrap {
  display: flex;
  gap: 36px;
  align-items: center;
  flex-wrap: wrap;
}

.asym-wrap.reverse {
  flex-direction: row-reverse;
}

.asym-block {
  flex: 1 1 280px;
  min-width: 260px;
}

.offset-box {
  background: #fff;
  padding: 28px;
  border-radius: 18px;
  transform: translateY(-18px);
  box-shadow: 0 14px 40px rgba(15, 26, 18, 0.15);
}

.stats {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.stat-card {
  flex: 1 1 220px;
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  border: 1px solid rgba(15, 26, 18, 0.08);
}

.timeline {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.timeline-step {
  flex: 1 1 200px;
  padding: 20px;
  border-left: 3px solid var(--leaf);
  background: #fff;
  border-radius: 12px;
}

.pricing-grid {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.price-card {
  flex: 1 1 260px;
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  border: 1px solid rgba(15, 26, 18, 0.08);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price-tag {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--moss);
}

.form-panel {
  background: #fff;
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 20px 46px rgba(15, 26, 18, 0.18);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(15, 26, 18, 0.2);
  font-family: inherit;
  font-size: 1rem;
}

.inline-cta {
  color: var(--river);
  font-weight: 600;
  text-decoration: underline;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9;
}

.footer {
  padding: 40px 0 60px;
  background: #0f1a12;
  color: #fff;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 16px 34px rgba(15, 26, 18, 0.2);
  max-width: 320px;
  z-index: 10;
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.hero-grid {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.hero-tile {
  flex: 1 1 180px;
  background: rgba(255, 255, 255, 0.88);
  border-radius: 16px;
  padding: 16px;
}

.page-header {
  padding: 50px 0 30px;
}

.simple-card {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  border: 1px solid rgba(15, 26, 18, 0.08);
}

.contact-grid {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.contact-item {
  flex: 1 1 220px;
  background: #fff;
  border-radius: 16px;
  padding: 20px;
}

.policy-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

@media (max-width: 880px) {
  .hero::before {
    position: relative;
    right: auto;
    width: 100%;
    height: 260px;
    border-radius: 18px;
    margin-bottom: 20px;
    display: block;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
