* {
  box-sizing: border-box;
}

:root {
  --bg: #f6f4f1;
  --ink: #1f2622;
  --muted: #5b675f;
  --accent: #2f6f5e;
  --accent-dark: #25584a;
  --sand: #e8dfd6;
  --clay: #d9c9ba;
  --leaf: #c8d7c2;
  --sky: #dde6e9;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img-frame {
  width: 100%;
  height: 100%;
  background-color: var(--clay);
}

.img-frame.sky {
  background-color: var(--sky);
}

.img-frame.leaf {
  background-color: var(--leaf);
}

.img-frame.sand {
  background-color: var(--sand);
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1150px, 92%);
  margin: 0 auto;
}

.topbar {
  padding: 26px 0 18px;
}

.topbar-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ad-label {
  font-size: 0.9rem;
  color: var(--muted);
  margin-top: 6px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
  font-size: 0.95rem;
}

.nav-links a {
  padding: 6px 10px;
  border-radius: 20px;
  border: 1px solid transparent;
  transition: all 0.2s ease;
}

.nav-links a:hover,
.nav-links a:focus {
  border-color: var(--accent);
  color: var(--accent);
}

.hero {
  position: relative;
  padding: 90px 0 70px;
  background: var(--sand);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
  background-size: cover;
  background-position: center;
  opacity: 0.22;
}

.hero-inner {
  position: relative;
  display: flex;
  gap: 40px;
  align-items: center;
}

.hero-copy {
  flex: 1.1;
  max-width: 520px;
}

.hero-copy h1 {
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  margin-bottom: 18px;
}

.hero-copy p {
  font-size: 1.05rem;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 30px;
  border: none;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
}

.button:hover,
.button:focus {
  background: var(--accent-dark);
}

.button.outline {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.hero-image {
  flex: 0.9;
  background: var(--clay);
  border-radius: 32px;
  overflow: hidden;
  min-height: 380px;
  box-shadow: 0 20px 35px rgba(31, 38, 34, 0.18);
}

.section {
  padding: 80px 0;
}

.section.alt {
  background: var(--leaf);
}

.section.sand {
  background: var(--sand);
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 36px;
}

.section-header h2 {
  font-size: 2rem;
  margin: 0;
}

.offset-row {
  display: flex;
  gap: 36px;
  align-items: stretch;
}

.offset-card {
  flex: 1;
  background: #fff;
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 18px 32px rgba(31, 38, 34, 0.12);
}

.offset-media {
  flex: 0.9;
  background: var(--sky);
  border-radius: 28px;
  overflow: hidden;
  transform: translateY(24px);
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 0;
}

.pill {
  padding: 6px 12px;
  border-radius: 18px;
  background: var(--sand);
  font-size: 0.9rem;
}

.feature-grid {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.feature-card {
  flex: 1;
  min-width: 240px;
  background: #fff;
  border-radius: 22px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.feature-card .img-frame {
  height: 160px;
  border-radius: 18px;
  overflow: hidden;
  background: var(--clay);
}

.testimonials {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  align-items: stretch;
}

.testimonial {
  flex: 1;
  min-width: 240px;
  background: #fff;
  border-radius: 24px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.inline-cta {
  color: var(--accent);
  font-weight: 600;
}

.pricing-wrap {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.pricing-card {
  flex: 1;
  min-width: 230px;
  background: #fff;
  padding: 22px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-card h3 {
  margin: 0;
}

.price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent);
}

.form-section {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  align-items: center;
}

.form-card {
  flex: 1.1;
  min-width: 280px;
  background: #fff;
  border-radius: 26px;
  padding: 28px;
}

.form-card form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-card label {
  font-weight: 600;
}

.form-card input,
.form-card select,
.form-card textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid #cfd6d1;
  font-size: 1rem;
  font-family: inherit;
}

.form-visual {
  flex: 0.9;
  min-width: 260px;
  background: var(--sky);
  border-radius: 28px;
  overflow: hidden;
}

.sticky-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 20;
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 30px;
  box-shadow: 0 12px 24px rgba(31, 38, 34, 0.22);
}

.sticky-cta:hover,
.sticky-cta:focus {
  background: var(--accent-dark);
}

.footer {
  background: #141816;
  color: #f2f4f3;
  padding: 50px 0 60px;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
}

.footer-card {
  flex: 1;
  min-width: 220px;
}

.footer a {
  color: #f2f4f3;
}

.disclaimer {
  font-size: 0.9rem;
  color: #c8d0cb;
  margin-top: 18px;
}

.cookie-banner {
  position: fixed;
  left: 22px;
  bottom: 22px;
  background: #fff;
  color: var(--ink);
  border-radius: 18px;
  padding: 18px;
  width: min(340px, 90%);
  box-shadow: 0 14px 30px rgba(31, 38, 34, 0.2);
  display: none;
  z-index: 25;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.page-hero {
  padding: 60px 0 30px;
}

.page-hero h1 {
  margin-bottom: 10px;
}

.content-block {
  background: #fff;
  border-radius: 24px;
  padding: 26px;
  box-shadow: 0 14px 28px rgba(31, 38, 34, 0.1);
  margin-bottom: 26px;
}

.contact-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.muted {
  color: var(--muted);
}

@media (max-width: 900px) {
  .hero-inner,
  .offset-row,
  .form-section {
    flex-direction: column;
  }

  .offset-media {
    transform: none;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
