* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Arial, sans-serif;
  color: #1f1f1f;
  background: #f6f4f1;
  line-height: 1.6;
}

a {
  color: #1f4b3f;
  text-decoration: none;
}

a:hover,
a:focus {
  text-decoration: underline;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

.page {
  width: 100%;
}

.top-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  padding: 16px 6vw;
  background: #ffffff;
  border-bottom: 1px solid #e0dedb;
}

.brand {
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.4px;
}

.ad-label {
  flex: 1;
  font-size: 0.85rem;
  color: #4a3f2c;
  text-align: center;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  padding: 72px 6vw 60px;
  background: #1f2b24;
  color: #f5f3ef;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.2));
  pointer-events: none;
}

.hero-content,
.hero-media {
  position: relative;
  z-index: 1;
  flex: 1 1 320px;
}

.hero-media {
  min-height: 320px;
  border-radius: 20px;
  overflow: hidden;
  background-color: #283228;
}

.hero-media img {
  width: 100%;
  height: 100%;
}

.hero h1 {
  font-size: 2.5rem;
  margin: 0 0 18px;
  max-width: 520px;
}

.hero p {
  max-width: 520px;
  margin: 0 0 24px;
}

.btn-primary,
.btn-outline,
.btn-soft {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 28px;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: #f0b93b;
  color: #1f1f1f;
}

.btn-primary:hover,
.btn-primary:focus {
  background: #ffd46a;
}

.btn-outline {
  border-color: #f0b93b;
  color: #f0b93b;
  background: transparent;
}

.btn-outline:hover,
.btn-outline:focus {
  background: rgba(240, 185, 59, 0.15);
}

.btn-soft {
  background: #ffffff;
  color: #1f2b24;
  border-color: #ffffff;
}

.btn-soft:hover,
.btn-soft:focus {
  background: #eae6df;
}

.section {
  padding: 56px 6vw;
}

.section-muted {
  background: #ffffff;
}

.section-contrast {
  background: #e7e2d8;
}

.section-dark {
  background: #1f2b24;
  color: #f3f0e9;
}

.section-bg-photo {
  background-image: url("https://images.unsplash.com/photo-1508672019048-805c876b67e2?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #f5f1e8;
  position: relative;
}

.section-bg-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15, 20, 18, 0.68);
}

.section-bg-photo .bg-overlay {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1 1 320px;
}

.image-frame {
  border-radius: 18px;
  overflow: hidden;
  background-color: #d7d0c5;
}

.image-frame img {
  width: 100%;
  height: 100%;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.pill {
  background: #f5f1e8;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.9rem;
}

.story-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.story-card {
  flex: 1 1 240px;
  background: #ffffff;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
}

.story-card img {
  border-radius: 12px;
  width: 100%;
  height: 180px;
}

.trust-band {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: stretch;
}

.trust-block {
  flex: 1 1 240px;
  background: #27352d;
  color: #f3f0e9;
  padding: 20px;
  border-radius: 16px;
}

.testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.testimonial {
  flex: 1 1 260px;
  background: #ffffff;
  padding: 20px;
  border-radius: 16px;
  border-left: 4px solid #f0b93b;
}

.pricing-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.price-card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  border: 1px solid #e0dedb;
}

.price {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1f2b24;
}

.form-shell {
  background: #ffffff;
  padding: 26px;
  border-radius: 18px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

select,
input,
textarea {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #cfc7bc;
  font-size: 1rem;
}

.inline-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
}

.sticky-cta {
  position: fixed;
  bottom: 16px;
  right: 16px;
  background: #1f2b24;
  padding: 12px 16px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 10;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}

.sticky-cta span {
  color: #f5f1e8;
  font-size: 0.9rem;
}

.sticky-cta a {
  background: #f0b93b;
  color: #1f1f1f;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 600;
}

.sticky-cta a:hover,
.sticky-cta a:focus {
  background: #ffd46a;
}

.footer {
  padding: 32px 6vw 60px;
  background: #ffffff;
  border-top: 1px solid #e0dedb;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 16px;
}

.legal-note {
  font-size: 0.9rem;
  color: #4b4b4b;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  bottom: 16px;
  background: #ffffff;
  padding: 16px;
  border-radius: 12px;
  max-width: 320px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
  border: 1px solid #e0dedb;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.cookie-actions button {
  flex: 1;
}

.simple-hero {
  background: #1f2b24;
  color: #f3f0e9;
  padding: 54px 6vw;
}

.simple-hero h1 {
  margin: 0 0 10px;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.highlight-box {
  background: #ffffff;
  padding: 20px;
  border-radius: 16px;
  border: 1px solid #e0dedb;
}

.spacer {
  height: 10px;
}

@media (max-width: 820px) {
  .ad-label {
    flex: 1 1 100%;
    text-align: left;
  }

  .sticky-cta {
    left: 16px;
    right: 16px;
    justify-content: space-between;
  }
}
