* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: #1f2a24;
  background: #f7f6f2;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 7vw;
  background: #f7f6f2;
  position: relative;
}

.nav-brand {
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.03em;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
}

.nav-links a {
  padding: 6px 8px;
  border-radius: 18px;
  background: #e7ede4;
}

.ad-label {
  font-size: 0.85rem;
  color: #314437;
  max-width: 220px;
  text-align: right;
}

.section {
  padding: 70px 7vw;
  position: relative;
}

.hero {
  display: flex;
  gap: 40px;
  align-items: center;
  background: #e1e8dc;
}

.hero-content {
  flex: 1.1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-media {
  flex: 1;
  min-height: 360px;
  background-color: #cdd7c5;
  background-position: center;
  background-size: cover;
  border-radius: 24px;
  box-shadow: -24px 26px 0 rgba(79, 106, 87, 0.18);
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-button,
.cta-link {
  padding: 12px 20px;
  border-radius: 26px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.cta-button {
  background: #2d4b38;
  color: #f8faf6;
}

.cta-link {
  background: #f7f6f2;
  border: 1px solid #2d4b38;
  color: #2d4b38;
}

.offset-band {
  background: #fff;
  margin: -40px 0 0 12vw;
  border-radius: 26px 0 0 26px;
  padding: 60px 6vw 60px 5vw;
  box-shadow: -10px 18px 30px rgba(0, 0, 0, 0.08);
}

.band-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.service-card {
  flex: 1 1 220px;
  background: #f4f1ea;
  border-radius: 20px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-card img {
  width: 100%;
  height: 150px;
  border-radius: 16px;
}

.service-price {
  font-weight: 700;
  color: #2d4b38;
}

.split {
  display: flex;
  gap: 38px;
  align-items: center;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .image-frame {
  flex: 1;
  min-height: 280px;
  background-color: #d5dfd2;
  border-radius: 18px;
  overflow: hidden;
}

.split .text-block {
  flex: 1.1;
}

.image-frame img {
  width: 100%;
  height: 100%;
}

.highlight {
  background: #2d4b38;
  color: #f8faf6;
  border-radius: 24px;
  padding: 40px 7vw;
  margin: 0 7vw 30px 7vw;
}

.testimonial {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.testimonial-card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 20px;
  padding: 18px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.pricing-table {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.pricing-item {
  flex: 1 1 220px;
  background: #e7ede4;
  border-radius: 18px;
  padding: 18px;
}

.form-panel {
  background: #fff;
  border-radius: 28px;
  padding: 32px;
  box-shadow: 18px 18px 0 rgba(45, 75, 56, 0.18);
}

.service-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.service-form label {
  font-weight: 600;
}

.service-form input,
.service-form select,
.service-form textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #c8d3c7;
  font-size: 1rem;
}

.form-error {
  color: #7f2b2b;
  min-height: 20px;
}

.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #2d4b38;
  color: #f8faf6;
  padding: 12px 18px;
  border-radius: 40px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 10;
}

.sticky-cta button {
  background: transparent;
  border: none;
  color: inherit;
  font-weight: 600;
  cursor: pointer;
}

.footer {
  background: #1f2a24;
  color: #f7f6f2;
  padding: 50px 7vw 40px;
  margin-top: auto;
}

.footer-grid {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.footer a {
  color: #f7f6f2;
}

.legal-list {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #f7f6f2;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  display: none;
  z-index: 12;
  max-width: 320px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  padding: 8px 14px;
  border-radius: 18px;
  border: 1px solid #2d4b38;
  background: #fff;
  cursor: pointer;
}

.bg-hero {
  background-image: url("https://images.unsplash.com/photo-1778404728142-a2c14d36fd62?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-path {
  background-image: url("https://images.unsplash.com/photo-1776409237697-7bbbf2032caf?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-tools {
  background-image: url("https://images.unsplash.com/photo-1573561368183-fd88bdb4503d?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-soft {
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.card-img-1 {
  background-color: #dce6d8;
}

.card-img-2 {
  background-color: #f0ede6;
}

.card-img-3 {
  background-color: #e0e8d6;
}

.card-img-4 {
  background-color: #e9e3d9;
}

.inline-image {
  width: 100%;
  height: 240px;
  border-radius: 18px;
}

.inline-image.small {
  height: 180px;
}

.page-hero {
  background: #e1e8dc;
  padding: 70px 7vw 40px;
}

.page-hero h1 {
  margin: 0 0 12px 0;
}

.content-grid {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
}

.content-grid .panel {
  flex: 1 1 260px;
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.notice {
  background: #f4f1ea;
  border-radius: 16px;
  padding: 16px;
}

@media (max-width: 900px) {
  .hero,
  .split,
  .split.reverse {
    flex-direction: column;
  }

  .offset-band {
    margin: 0 0 0 0;
    border-radius: 26px;
  }

  .nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .ad-label {
    text-align: left;
  }
}
