* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1a1f16;
  --muted: #5b6a5a;
  --accent: #2f7a5f;
  --accent-2: #cfe6d7;
  --sand: #f3f1ec;
  --sun: #f6c26b;
  --leaf: #9ec9a7;
  --stone: #d7d3c8;
  --deep: #2a3d36;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:focus,
button:focus,
select:focus,
input:focus,
textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

header {
  padding: 28px 6vw 10px;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.brand {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.8px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.ad-label {
  font-size: 12px;
  color: var(--deep);
  background: var(--accent-2);
  padding: 6px 10px;
  border-radius: 999px;
}

.hero {
  display: flex;
  gap: 4vw;
  padding: 40px 6vw 60px;
  align-items: stretch;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 20px 0;
}

.hero-card {
  background: var(--sand);
  border-radius: 20px;
  padding: 24px;
  max-width: 440px;
}

.hero-visual {
  flex: 1 1 360px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  min-height: 360px;
  background: var(--stone);
  border-radius: 24px;
  overflow: hidden;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.floating-note {
  position: absolute;
  right: 18px;
  bottom: 18px;
  background: rgba(255, 255, 255, 0.92);
  padding: 14px 16px;
  border-radius: 16px;
  max-width: 220px;
  font-size: 14px;
}

.section {
  padding: 60px 6vw;
}

.section.alt {
  background: var(--sand);
}

.section-title {
  font-size: 28px;
  margin-bottom: 18px;
}

.split {
  display: flex;
  gap: 4vw;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-col {
  flex: 1 1 320px;
}

.image-frame {
  background: var(--leaf);
  border-radius: 18px;
  overflow: hidden;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.service-grid.spaced {
  margin-top: 24px;
}

.service-card {
  flex: 1 1 260px;
  border: 1px solid var(--stone);
  border-radius: 20px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #ffffff;
}

.service-card .price {
  font-weight: 700;
  color: var(--deep);
}

.service-card .card-image {
  background: var(--accent-2);
  border-radius: 16px;
  overflow: hidden;
}

.service-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.cta-row.spaced {
  margin-top: 26px;
}

.btn {
  padding: 12px 18px;
  background: var(--accent);
  color: #ffffff;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
}

.btn.secondary {
  background: var(--deep);
}

.btn.ghost {
  background: transparent;
  color: var(--deep);
  border: 1px solid var(--deep);
}

.insight-cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.insight-card {
  flex: 1 1 220px;
  background: var(--accent-2);
  border-radius: 18px;
  padding: 16px;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #ffffff;
  padding: 24px;
  border-radius: 20px;
  border: 1px solid var(--stone);
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--stone);
  font-size: 16px;
}

footer {
  background: var(--deep);
  color: #ffffff;
  padding: 40px 6vw;
}

footer a {
  color: #ffffff;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 16px 0;
}

.disclaimer {
  font-size: 13px;
  color: #cbd7cf;
  margin-top: 12px;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: var(--sun);
  color: var(--ink);
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  border: 1px solid var(--stone);
  padding: 18px;
  border-radius: 16px;
  max-width: 320px;
  z-index: 20;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.badge-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.badge {
  background: var(--accent-2);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 13px;
}

.simple-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-card {
  background: var(--sand);
  border-radius: 18px;
  padding: 20px;
}

.legal-section {
  padding: 40px 6vw 60px;
}

.legal-section h2 {
  margin-top: 20px;
  margin-bottom: 10px;
}

.cta-inline {
  font-weight: 600;
  color: var(--deep);
  border-bottom: 1px solid var(--deep);
}

.muted {
  color: var(--muted);
}

@media (max-width: 800px) {
  .hero {
    padding: 30px 6vw 40px;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
