* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #151515;
  background: #f7f6f4;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  width: 100%;
  overflow-x: hidden;
}

.container {
  width: min(1140px, 92%);
  margin: 0 auto;
}

.topbar {
  background: #101417;
  color: #f3f5f6;
  padding: 12px 0;
}

.topbar-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  font-size: 0.95rem;
}

.ad-label {
  background: #ffe6a7;
  color: #3b2a00;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.8rem;
}

.hero {
  padding: 48px 0 64px;
  background: #f0efe9;
}

.split {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 32px;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1 1 320px;
}

.hero h1 {
  font-size: clamp(2rem, 3vw, 3.4rem);
  margin-bottom: 16px;
}

.lead {
  font-size: 1.1rem;
  line-height: 1.7;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 8px;
  background: #1e2b2e;
  color: #fff;
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn:hover,
.btn:focus {
  background: #2c3f44;
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: #1e2b2e;
  border: 1px solid #1e2b2e;
}

.section {
  padding: 54px 0;
}

.section.alt {
  background: #ffffff;
}

.section.soft {
  background: #f1f4f2;
}

.image-frame {
  background: #d8d4cd;
  border-radius: 14px;
  overflow: hidden;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 24px;
}

.stat {
  flex: 1 1 180px;
  background: #ffffff;
  border-radius: 12px;
  padding: 16px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.cards.spaced {
  margin-top: 24px;
}

.card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 240px;
}

.card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1e2b2e;
}

.badge {
  display: inline-block;
  padding: 4px 10px;
  background: #e9efe9;
  border-radius: 999px;
  font-size: 0.8rem;
}

.quote {
  background: #101417;
  color: #f1f1f1;
  padding: 22px;
  border-radius: 14px;
}

.form-wrap {
  background: #ffffff;
  padding: 24px;
  border-radius: 16px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #c9c9c9;
  font-size: 0.95rem;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

.footer {
  padding: 36px 0 80px;
  background: #101417;
  color: #d7d7d7;
  font-size: 0.9rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.footer a {
  color: #d7d7d7;
}

.legal-list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 20;
}

.sticky-cta a {
  background: #e6f2ec;
  color: #1e2b2e;
  border: 1px solid #1e2b2e;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 30;
  background: #ffffff;
  border-radius: 12px;
  padding: 16px;
  width: min(360px, 90%);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  padding: 8px 12px;
  border-radius: 8px;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

.cookie-accept {
  background: #1e2b2e;
  color: #fff;
}

.cookie-reject {
  background: #e1e1e1;
  color: #2a2a2a;
}

.muted {
  color: #6c6c6c;
}

.section-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.6rem;
}

.inline-link {
  color: #1e2b2e;
  text-decoration: underline;
}

.notice {
  background: #fff3da;
  padding: 16px;
  border-radius: 12px;
}
