* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1e1f1b;
  --muted: #5a5f55;
  --brand: #2f6f57;
  --accent: #d48a2a;
  --soft: #f4f0ea;
  --sand: #efe7dc;
  --sky: #e3edf1;
  --leaf: #dfe7d6;
  --stone: #e8e2da;
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

header {
  padding: 24px 6vw 0;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid #e6e1d8;
  padding-bottom: 16px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand h1 {
  font-size: 24px;
  letter-spacing: 0.5px;
}

.ad-label {
  font-size: 12px;
  color: var(--muted);
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
}

.nav-links a {
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid transparent;
}

.nav-links a:hover {
  border-color: var(--accent);
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: var(--brand);
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 20;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 30px 6vw 0;
}

.hero-visual {
  min-height: 360px;
  border-radius: 22px;
  overflow: hidden;
  background-color: var(--stone);
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 760px;
}

.hero-text h2 {
  font-size: 36px;
}

.hero-text p {
  font-size: 18px;
  color: var(--muted);
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 20px;
  border-radius: 12px;
  border: 1px solid var(--brand);
  background: var(--brand);
  color: #ffffff;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-outline {
  background: transparent;
  color: var(--brand);
}

.section {
  padding: 60px 6vw;
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.section.split {
  flex-direction: row;
  gap: 32px;
  align-items: stretch;
  flex-wrap: wrap;
}

.section.highlight {
  background: var(--soft);
}

.section.sand {
  background: var(--sand);
}

.section.sky {
  background: var(--sky);
}

.section.leaf {
  background: var(--leaf);
}

.section h3 {
  font-size: 28px;
}

.section p {
  color: var(--muted);
}

.content-block {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.image-block {
  flex: 1 1 320px;
  min-height: 260px;
  border-radius: 20px;
  overflow: hidden;
  background-color: var(--stone);
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.timeline-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.timeline-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--accent);
  margin-top: 6px;
}

.cards {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 220px;
  background: #ffffff;
  border-radius: 18px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
}

.card-image {
  height: 160px;
  border-radius: 14px;
  overflow: hidden;
  background-color: var(--stone);
}

.badge {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  font-size: 12px;
  width: fit-content;
}

.price {
  font-size: 18px;
  font-weight: 700;
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.quote {
  background: #ffffff;
  border-left: 4px solid var(--accent);
  padding: 16px 18px;
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.05);
}

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding: 28px;
  border-radius: 20px;
  background: var(--brand);
  color: #ffffff;
}

.cta-panel .btn {
  background: #ffffff;
  color: var(--brand);
  border-color: #ffffff;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #ffffff;
  padding: 22px;
  border-radius: 18px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

label {
  font-size: 14px;
  color: var(--muted);
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #d8d2c8;
  font-size: 15px;
  width: 100%;
  background: #ffffff;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

button {
  padding: 12px 18px;
  border-radius: 12px;
  border: none;
  background: var(--brand);
  color: #ffffff;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
}

footer {
  padding: 40px 6vw 60px;
  background: #161814;
  color: #f5f3ef;
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 14px;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.legal {
  color: #cfc8bb;
  font-size: 13px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  max-width: 360px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.15);
  padding: 16px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.cookie-actions button {
  flex: 1;
}

.layout-narrow {
  max-width: 880px;
}

.center {
  align-self: center;
}

@media (max-width: 900px) {
  .section.split {
    flex-direction: column;
  }

  .hero-text h2 {
    font-size: 30px;
  }

  .sticky-cta {
    right: 12px;
    left: 12px;
    justify-content: center;
  }
}
