:root {
  --bg: #f6f7f2;
  --ink: #1f2a27;
  --muted: #4d5b57;
  --accent: #2f6f59;
  --accent-soft: #d8efe6;
  --sand: #f0e9dd;
  --steel: #e2e7ea;
  --shadow: rgba(18, 32, 27, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover,
a:focus {
  text-decoration: underline;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

header {
  background: #ffffff;
  border-bottom: 1px solid var(--steel);
}

.nav-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px 6vw 20px;
}

.nav-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ad-label {
  font-size: 0.9rem;
  color: var(--muted);
  border: 1px solid var(--steel);
  padding: 6px 10px;
  border-radius: 999px;
  background: #fdfdfb;
}

.nav-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.nav-links a {
  font-size: 0.95rem;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding: 60px 6vw 40px;
  align-items: stretch;
}

.hero-text {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: var(--sand);
  padding: 32px;
  border-radius: 22px;
  box-shadow: 0 16px 36px var(--shadow);
}

.hero-visual {
  flex: 1 1 360px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
}

.hero-visual .hero-image {
  border-radius: 26px;
  overflow: hidden;
  background: var(--steel);
  min-height: 320px;
}

.hero-visual .floating-note {
  align-self: flex-end;
  background: #ffffff;
  padding: 14px 18px;
  border-radius: 18px;
  box-shadow: 0 12px 28px var(--shadow);
  max-width: 220px;
}

.primary-btn,
.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  cursor: pointer;
}

.primary-btn {
  background: var(--accent);
  color: #fff;
}

.primary-btn:hover,
.primary-btn:focus {
  background: #255a47;
  text-decoration: none;
}

.secondary-btn {
  background: #ffffff;
  color: var(--accent);
  border-color: var(--accent);
}

.secondary-btn:hover,
.secondary-btn:focus {
  background: var(--accent-soft);
  text-decoration: none;
}

.section {
  padding: 56px 6vw;
  position: relative;
}

.section.offset {
  background: #ffffff;
}

.section.light {
  background: var(--steel);
}

.section.accent {
  background: var(--accent-soft);
}

.background-panel {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  pointer-events: none;
  background: var(--steel);
}

.background-panel img {
  width: 100%;
  height: 100%;
}

.section.with-background {
  overflow: hidden;
}

.asym-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

.asym-row.reverse {
  flex-direction: row-reverse;
}

.asym-text {
  flex: 1 1 320px;
  background: #ffffff;
  padding: 26px;
  border-radius: 20px;
  box-shadow: 0 14px 28px var(--shadow);
}

.asym-image {
  flex: 1 1 320px;
  border-radius: 22px;
  overflow: hidden;
  background: var(--sand);
  min-height: 260px;
}

.floating-card {
  position: relative;
  top: -30px;
  background: #fff;
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 18px 30px var(--shadow);
  max-width: 320px;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.service-card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 24px var(--shadow);
  display: flex;
  flex-direction: column;
}

.service-card .card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tag {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 600;
}

.steps {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.step {
  flex: 1 1 200px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  border-left: 4px solid var(--accent);
}

.form-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
}

.form-panel {
  flex: 1 1 320px;
  background: #ffffff;
  padding: 26px;
  border-radius: 20px;
  box-shadow: 0 16px 30px var(--shadow);
}

.form-panel form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-panel label {
  font-weight: 600;
}

.form-panel input,
.form-panel select,
.form-panel textarea {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid var(--steel);
  font-size: 1rem;
  background: #fdfdfb;
}

.form-panel button {
  border: none;
}

.note {
  font-size: 0.9rem;
  color: var(--muted);
}

.cta-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-strip .inline-link {
  font-weight: 600;
}

.sticky-cta {
  position: fixed;
  bottom: 22px;
  right: 22px;
  background: var(--accent);
  color: #ffffff;
  padding: 12px 16px;
  border-radius: 999px;
  box-shadow: 0 10px 24px var(--shadow);
  z-index: 20;
}

.sticky-cta:hover,
.sticky-cta:focus {
  background: #244f40;
  text-decoration: none;
}

footer {
  margin-top: auto;
  background: #1d2623;
  color: #eef4f1;
  padding: 40px 6vw;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-column {
  flex: 1 1 220px;
}

.footer-column a {
  color: #cfe6dc;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  color: var(--ink);
  padding: 16px;
  border-radius: 16px;
  box-shadow: 0 12px 24px var(--shadow);
  max-width: 320px;
  display: none;
  z-index: 30;
}

.cookie-banner.active {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.page-title {
  font-size: 2.2rem;
  margin: 0 0 12px;
}

.subtle {
  color: var(--muted);
}

.legal-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.two-col {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.two-col > div {
  flex: 1 1 280px;
}

.plain-list {
  padding-left: 20px;
}

.highlight-box {
  background: #ffffff;
  padding: 20px;
  border-radius: 16px;
  border: 1px solid var(--steel);
}

.service-price {
  font-size: 1.2rem;
  font-weight: 700;
}

.image-frame {
  border-radius: 18px;
  overflow: hidden;
  background: var(--steel);
}

.spacer-top {
  margin-top: 20px;
}
