* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --bg: #f6f2ee;
  --ink: #1f1f1b;
  --muted: #5f5c56;
  --accent: #1a6d63;
  --accent-dark: #124a44;
  --warm: #f2d7c7;
  --cool: #d8e7e4;
  --card: #ffffff;
  --line: #e2ddd7;
}

body {
  margin: 0;
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.page {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

header {
  padding: 26px 6vw 0;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 18px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: lowercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.nav-links a {
  font-size: 0.95rem;
}

.ad-label {
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--warm);
  font-size: 0.82rem;
  color: var(--ink);
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  padding: 0 6vw;
  align-items: stretch;
}

.hero-text {
  flex: 1 1 320px;
  max-width: 520px;
  padding: 30px;
  background: var(--card);
  border-radius: 22px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
  margin-top: 40px;
}

.hero-media {
  flex: 1 1 320px;
  min-height: 360px;
  border-radius: 26px;
  background: var(--cool);
  background-size: cover;
  background-position: center;
}

.bg-hero {
  background-image: url("https://images.unsplash.com/photo-1517849845537-4d257902454a?w=1400&q=80");
}

.section {
  padding: 0 6vw;
}

.section-offset {
  padding: 30px 6vw;
  background: var(--card);
  border-radius: 30px;
  margin: 0 4vw;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.08);
}

.section-bg {
  background-image: url("https://images.unsplash.com/photo-1525253086316-d0c936c814f8?w=1400&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 32px;
  padding: 44px 6vw;
  margin: 0 4vw;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.section-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(18, 21, 21, 0.55);
}

.section-bg > * {
  position: relative;
  z-index: 1;
}

.section-title {
  font-size: 1.9rem;
  margin: 0 0 12px;
}

.muted {
  color: var(--muted);
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.panel {
  flex: 1 1 300px;
}

.image-frame {
  flex: 1 1 280px;
  background: #dcd4cc;
  border-radius: 20px;
  overflow: hidden;
  min-height: 260px;
}

.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background-color: #dcd4cc;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 220px;
  background: var(--card);
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.06);
}

.card img {
  border-radius: 14px;
}

.price {
  font-weight: 700;
  font-size: 1.1rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.button {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.button.secondary {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}

.button:hover,
.button.secondary:hover {
  background: var(--accent-dark);
  color: #fff;
}

.inline-cta {
  font-weight: 600;
}

.form-wrap {
  background: var(--cool);
  border-radius: 24px;
  padding: 28px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--line);
  font-size: 1rem;
  font-family: inherit;
}

.testimonial {
  background: var(--warm);
  border-radius: 18px;
  padding: 18px;
  font-style: italic;
}

.footer {
  background: #181715;
  color: #f5f2ee;
  padding: 40px 6vw;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer a {
  color: #f5f2ee;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.disclaimer {
  font-size: 0.9rem;
  color: #d0cbc5;
}

.sticky-cta {
  position: fixed;
  bottom: 16px;
  right: 16px;
  background: var(--accent);
  color: #fff;
  padding: 12px 16px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.18);
  z-index: 20;
}

.sticky-cta button {
  background: #fff;
  color: var(--accent);
  border: none;
  border-radius: 999px;
  padding: 8px 14px;
  cursor: pointer;
  font-weight: 600;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  bottom: 16px;
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  width: min(320px, 90vw);
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.15);
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  flex: 1 1 auto;
}

.simple-hero {
  padding: 30px 6vw 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.legal-card {
  background: var(--card);
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.06);
}

@media (max-width: 780px) {
  .hero-text {
    margin-top: 0;
  }

  .sticky-cta {
    right: 10px;
    left: 10px;
    justify-content: space-between;
  }
}
