* {
  box-sizing: border-box;
}

:root {
  --ink: #1b1b1f;
  --muted: #5a5e67;
  --sand: #f6f2ed;
  --stone: #e7e0d7;
  --deep: #0f1720;
  --accent: #d25d3b;
  --accent-soft: #f3c7b7;
  --bg: #fbfaf8;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.header {
  padding: 24px 6vw 10px;
}

.nav-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.4px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  font-size: 0.96rem;
}

.ad-label {
  background: var(--accent-soft);
  color: var(--deep);
  padding: 6px 10px;
  border-radius: 14px;
  font-size: 0.82rem;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 30px 6vw 40px;
  position: relative;
}

.hero-shell {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: stretch;
}

.hero-text {
  flex: 1 1 320px;
  background: rgba(255, 255, 255, 0.9);
  padding: 28px;
  box-shadow: 0 24px 60px rgba(15, 23, 32, 0.14);
  border-radius: 18px;
  transform: translateY(12px);
}

.hero-panel {
  flex: 1 1 380px;
  border-radius: 18px;
  background-color: #d7d2cc;
  min-height: 320px;
  background-image: url("https://images.pexels.com/photos/9728485/pexels-photo-9728485.jpeg");
  background-size: cover;
  background-position: center;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.btn {
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid var(--deep);
  background: var(--deep);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.btn-outline {
  background: transparent;
  color: var(--deep);
}

.btn:hover,
.btn-outline:hover {
  opacity: 0.88;
}

.section {
  padding: 40px 6vw;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section.alt {
  background: var(--sand);
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-text {
  flex: 1 1 300px;
}

.split-image {
  flex: 1 1 340px;
  background-color: #d8d0c8;
  border-radius: 18px;
  overflow: hidden;
}

.inline-cta {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
}

.callout {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--deep);
  color: #fff;
  padding: 26px;
  border-radius: 18px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 20px 40px rgba(15, 23, 32, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card-media {
  border-radius: 14px;
  overflow: hidden;
  background-color: #e1dad2;
}

.card-price {
  font-weight: 700;
  color: var(--accent);
}

.testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.quote {
  flex: 1 1 220px;
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  border-left: 4px solid var(--accent);
}

.pricing-reveal {
  background: var(--deep);
  color: #fff;
  padding: 30px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 18px 50px rgba(15, 23, 32, 0.12);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

select,
input {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #c9c3bd;
  font-size: 1rem;
}

.footer {
  margin-top: auto;
  padding: 30px 6vw 40px;
  background: var(--stone);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.9rem;
}

.disclaimer {
  font-size: 0.85rem;
  color: #31343a;
}

.sticky-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--accent);
  color: #fff;
  padding: 12px 16px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #fff;
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 18px 45px rgba(15, 23, 32, 0.2);
  max-width: 320px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.page-hero {
  padding: 34px 6vw;
  background: var(--deep);
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.page-body {
  padding: 32px 6vw 50px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.media-block {
  background-color: #dcd5cc;
  border-radius: 18px;
  overflow: hidden;
}

.list {
  margin: 0;
  padding-left: 18px;
}

.muted {
  color: var(--muted);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--deep);
  font-weight: 600;
}

.gridless-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: flex-start;
}
