* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: #1f2724;
  background-color: #f6f4f1;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: #1f5f4a;
  text-decoration: none;
}

a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline: 2px solid #1f5f4a;
  outline-offset: 2px;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 6%;
  background: #f6f4f1;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand-name {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.ad-label {
  font-size: 0.78rem;
  color: #6a6f6c;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.nav-links a {
  padding: 6px 10px;
  border-radius: 20px;
  background-color: #e9efe9;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 60px 6% 48px;
  color: #f6f4f1;
  background-color: #22332b;
  background-image: url("https://images.unsplash.com/photo-1507146426996-ef05306b995a?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  background-color: #1f2724b5;
  max-width: 620px;
  gap: 16px;
}

.hero h1 {
  font-size: 2.6rem;
  margin: 0;
  line-height: 1.15;
}

.hero p {
  margin: 0;
  font-size: 1.1rem;
}

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  background-color: #f1c86a;
  color: #1f2724;
}

.btn.secondary {
  background-color: #f6f4f1;
  color: #1f2724;
  border: 1px solid #f1c86a;
}

.section {
  padding: 56px 6%;
  background-color: #f6f4f1;
}

.section.alt {
  background-color: #eef0ec;
}

.section.dark {
  background-color: #1f2724;
  color: #f6f4f1;
}

.section-heading {
  font-size: 1.9rem;
  margin: 0 0 12px;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  background-color: rgba(255, 255, 255, 0.68);
  align-items: center;
}

.split > div {
  flex: 1 1 280px;
}

.image-frame {
  background-color: #dfe5e0;
  border-radius: 22px;
  overflow: hidden;
}

.image-frame img {
  width: 100%;
  height: 100%;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 220px;
  background-color: #ffffff;
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 220px;
}

.card img {
  border-radius: 14px;
  width: 100%;
  height: 170px;
}

.inline-note {
  padding: 14px 18px;
  border-radius: 12px;
  background-color: #f1f5f1;
  font-size: 0.96rem;
}

.quote {
  font-style: italic;
  margin: 0;
}

.pricing-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pricing-item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 18px;
  background-color: #ffffff;
  border-radius: 18px;
}

.pricing-item span {
  font-weight: 600;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  background-color: #ffffff;
  border-radius: 18px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-row input,
.form-row select,
.form-row textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #cbd2cd;
  font-size: 1rem;
}

.form-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background-color: #1f2724;
  color: #f6f4f1;
  padding: 14px 18px;
  border-radius: 999px;
  display: flex;
  gap: 12px;
  align-items: center;
  z-index: 10;
}

.sticky-cta button {
  background-color: #f1c86a;
  color: #1f2724;
}

.footer {
  padding: 36px 6%;
  background-color: #1b221f;
  color: #f6f4f1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer small {
  color: #c1c7c2;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background-color: #ffffff;
  border-radius: 16px;
  padding: 18px;
  max-width: 320px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  display: none;
  z-index: 12;
}

.cookie-banner.visible {
  display: block;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  flex: 1;
}

.bg-story {
  background-image: url("https://images.unsplash.com/photo-1518791841217-8f162f1e1131?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-insight {
  background-image: url("https://images.unsplash.com/photo-1450778869180-41d0601e046e?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-trust {
  background-image: url("https://images.unsplash.com/photo-1466921583968-f07aa80c526e?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-benefits {
  background-image: url("https://images.unsplash.com/photo-1504208434309-cb69f4fe52b0?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.page-title {
  padding: 48px 6% 24px;
}

.content {
  padding: 0 6% 48px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.legal-block {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 20px;
}

.muted {
  color: #6a6f6c;
}

.reference-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.thanks-highlight {
  font-weight: 700;
  color: #1f5f4a;
}

.service-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-item {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  background-color: #ffffff;
  border-radius: 18px;
  padding: 18px;
}

.service-item .image-frame {
  width: 200px;
  height: 150px;
  flex: 0 0 auto;
}

.service-item img {
  width: 100%;
  height: 100%;
  border-radius: 14px;
}

.service-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.service-meta button {
  align-self: flex-start;
}

@media (max-width: 720px) {
  .hero h1 {
    font-size: 2.1rem;
  }

  .sticky-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}
