* {
  box-sizing: border-box;
}

:root {
  --ink: #0e1b16;
  --forest: #1c3b2f;
  --leaf: #4b7d5a;
  --mist: #eaf2ee;
  --sand: #f6f1e8;
  --sun: #f2c14e;
  --clay: #d38b5d;
  --white: #ffffff;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--sand);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 18px;
}

a {
  color: inherit;
}

.page {
  overflow-x: hidden;
}

.nav-wrap {
  padding: 28px 6vw 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.nav-links {
  display: flex;
  gap: 20px;
  font-size: 0.92rem;
}

.nav-links a {
  text-decoration: none;
  padding-bottom: 6px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-color: var(--leaf);
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  align-items: stretch;
  padding: 30px 6vw 60px;
  position: relative;
}

.hero-content {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-title {
  font-size: clamp(2.4rem, 3vw, 3.4rem);
  line-height: 1.15;
}

.hero-figure {
  flex: 1 1 320px;
  position: relative;
}

.hero-figure img {
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.hero-badge {
  position: absolute;
  top: -16px;
  left: -18px;
  background: var(--sun);
  padding: 16px 20px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.95rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid var(--forest);
  text-decoration: none;
  font-weight: 600;
  background: var(--forest);
  color: var(--white);
  transition: transform 0.2s ease;
}

.btn.secondary {
  background: transparent;
  color: var(--forest);
}

.btn:hover {
  transform: translateY(-2px);
}

.section {
  padding: 60px 6vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section.alt {
  background: var(--mist);
}

.section.asym {
  position: relative;
}

.section.asym::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  background: rgba(28, 59, 47, 0.08);
  right: 10%;
  top: -40px;
  border-radius: 30px;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1 1 260px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 220px;
  background: var(--white);
  padding: 22px;
  border-radius: 20px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  border-radius: 14px;
}

.band {
  background: var(--forest);
  color: var(--white);
  padding: 50px 6vw;
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}

.band p {
  max-width: 420px;
}

.inline-link {
  font-weight: 600;
  color: var(--leaf);
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.timeline-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.timeline-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--leaf);
  margin-top: 8px;
}

.offset {
  margin-left: 10%;
}

.form-card {
  background: var(--white);
  padding: 26px;
  border-radius: 20px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.1);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 0.9rem;
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #cbd7cf;
  font-size: 1rem;
}

button {
  padding: 12px 18px;
  border-radius: 999px;
  border: none;
  background: var(--leaf);
  color: var(--white);
  font-weight: 600;
  cursor: pointer;
}

.sticky-cta {
  position: sticky;
  bottom: 16px;
  margin: 0 6vw;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #d6e0d8;
  border-radius: 16px;
  padding: 12px 16px;
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  backdrop-filter: blur(8px);
  z-index: 10;
}

.sticky-cta span {
  font-weight: 600;
}

.footer {
  padding: 40px 6vw 60px;
  background: #0d1a16;
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}

.footer-links a {
  color: var(--white);
  text-decoration: none;
}

.page-title {
  font-size: clamp(2rem, 3vw, 3rem);
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 1rem;
}

.pricing {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.price-card {
  flex: 1 1 240px;
  background: var(--white);
  border-radius: 20px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border: 1px solid #dde7df;
}

.price-tag {
  font-size: 1.4rem;
  font-weight: 700;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: var(--white);
  padding: 16px 18px;
  border-radius: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  background: var(--forest);
}

.cookie-actions .reject {
  background: transparent;
  color: var(--forest);
  border: 1px solid var(--forest);
}

.policy {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px 6vw 70px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.policy h2 {
  margin: 0;
}

@media (max-width: 720px) {
  .nav-links {
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .sticky-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-badge {
    left: 12px;
  }
}
