* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #f6f4f1;
  --dark: #1f2428;
  --muted: #5f6b73;
  --accent: #2b7a78;
  --accent-2: #e07a5f;
  --light: #ffffff;
  --card: #fefdfb;
  --shadow: 0 20px 40px rgba(31, 36, 40, 0.08);
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--dark);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

header {
  padding: 28px 6vw 12px;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.ad-label {
  background: var(--accent);
  color: var(--light);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.8rem;
}

main {
  display: flex;
  flex-direction: column;
  gap: 72px;
  padding: 0 6vw 96px;
}

.section {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.split {
  display: flex;
  gap: 32px;
  align-items: stretch;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text,
.split .media {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-title {
  font-size: clamp(2.1rem, 3.5vw, 3.4rem);
  line-height: 1.2;
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 20px;
  border-radius: 999px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: var(--light);
}

.btn.secondary {
  background: transparent;
  border: 1px solid var(--dark);
  color: var(--dark);
}

.panel {
  background: var(--light);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.background-block {
  background-color: #2b3136;
  background-image: url("https://images.pexels.com/photos/31638922/pexels-photo-31638922.jpeg");
  background-size: cover;
  background-position: center;
  border-radius: 28px;
  color: var(--light);
  padding: 48px;
  position: relative;
}

.background-block::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 28px;
  background: rgba(31, 36, 40, 0.55);
}

.background-block > * {
  position: relative;
  z-index: 1;
}

.card-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 220px;
  background: var(--card);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.card-content {
  padding: 18px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: var(--accent-2);
}

.inline-link {
  text-decoration: underline;
  color: var(--accent);
  font-weight: 600;
}

.quote {
  font-style: italic;
  background: var(--light);
  border-left: 4px solid var(--accent);
  padding: 20px 24px;
  border-radius: 16px;
}

.form-card {
  background: var(--light);
  padding: 28px;
  border-radius: 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d7d7d7;
  font-family: inherit;
}

footer {
  padding: 56px 6vw 72px;
  background: #1d2226;
  color: #d9dde1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.9rem;
}

.disclaimer {
  font-size: 0.9rem;
  color: #b8c1c7;
}

.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--accent-2);
  color: var(--light);
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: var(--shadow);
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: var(--light);
  border-radius: 16px;
  padding: 16px 18px;
  box-shadow: var(--shadow);
  max-width: 320px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.image-frame {
  background: #dde3e0;
  border-radius: 18px;
  overflow: hidden;
}

.bg-1 {
  background-color: #dfe6e3;
}
.bg-2 {
  background-color: #e4e2dc;
}
.bg-3 {
  background-color: #e6e2dd;
}
.bg-4 {
  background-color: #e8e2dc;
}
.bg-5 {
  background-color: #dde2e0;
}
.bg-6 {
  background-color: #e0e2e7;
}
.bg-7 {
  background-color: #e5dfd6;
}
.bg-8 {
  background-color: #e1e3df;
}
.bg-9 {
  background-color: #e8e4df;
}
.bg-10 {
  background-color: #dde5e0;
}
.bg-11 {
  background-color: #e6e1da;
}
.bg-12 {
  background-color: #e4e1db;
}
.bg-13 {
  background-color: #e7e1d9;
}
.bg-14 {
  background-color: #e1e5ea;
}
.bg-15 {
  background-color: #e5e0d8;
}
.bg-16 {
  background-color: #dfe4e8;
}
.bg-17 {
  background-color: #e3e1dc;
}
.bg-18 {
  background-color: #e2e4de;
}
.bg-19 {
  background-color: #e7e0da;
}
.bg-20 {
  background-color: #e6e4e1;
}
.bg-21 {
  background-color: #e0e6e2;
}
.bg-22 {
  background-color: #e3e6e0;
}
.bg-23 {
  background-color: #e5e2dc;
}
.bg-24 {
  background-color: #e1e5e0;
}

.stacked {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.two-col {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.two-col > div {
  flex: 1 1 280px;
}

@media (max-width: 860px) {
  .sticky-cta {
    right: 14px;
    left: 14px;
    text-align: center;
  }
}
