@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap");

:root {
  --bg: #f6f3ef;
  --ink: #1f1d1a;
  --muted: #5b5852;
  --accent: #3f5d74;
  --accent-soft: #e6eef4;
  --edge: #ded6cc;
  --card: #ffffff;
  --cta: #354f62;
  --cta-contrast: #f9f6f1;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--ink);
  background: var(--bg);
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 6vw;
  border-bottom: 1px solid var(--edge);
  background: rgba(246, 243, 239, 0.96);
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 18px;
}

.logo {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  gap: 16px;
  font-size: 14px;
  color: var(--muted);
}

.ad-label {
  font-size: 12px;
  color: var(--muted);
  border: 1px solid var(--edge);
  padding: 6px 10px;
  border-radius: 999px;
  background: #fff;
}

.hero {
  display: flex;
  gap: 32px;
  padding: 70px 6vw 40px;
  align-items: stretch;
}

.hero-copy {
  flex: 1.1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  padding-right: 20px;
}

.hero-visual {
  flex: 0.9;
  position: relative;
}

.hero-image {
  border-radius: 28px;
  overflow: hidden;
  background: #d9d6d1;
  min-height: 360px;
}

.hero-card {
  position: absolute;
  bottom: -24px;
  left: -24px;
  background: var(--card);
  padding: 18px 22px;
  border-radius: 20px;
  box-shadow: 0 18px 30px rgba(27, 27, 27, 0.12);
  max-width: 240px;
}

.section {
  padding: 60px 6vw;
  position: relative;
}

.section.alt {
  background: #ffffff;
}

.section-title {
  font-size: 28px;
  margin: 0 0 16px;
}

.muted {
  color: var(--muted);
}

.split {
  display: flex;
  gap: 36px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.image-box {
  background: #d9d6d1;
  border-radius: 20px;
  overflow: hidden;
  min-height: 260px;
  flex: 1;
}

.content-box {
  flex: 1;
}

.offset-block {
  background: var(--accent-soft);
  padding: 26px 30px;
  border-radius: 18px;
  margin-top: 18px;
  transform: translateX(18px);
}

.card-row {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 240px;
  background: var(--card);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--edge);
  display: flex;
  flex-direction: column;
}

.card-body {
  padding: 18px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--cta);
  color: var(--cta-contrast);
  padding: 12px 22px;
  border-radius: 999px;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

.button.outline {
  background: transparent;
  color: var(--cta);
  border: 1px solid var(--cta);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cta-spaced {
  margin-top: 18px;
}

.inline-link {
  color: var(--accent);
  font-weight: 600;
}

.form-wrap {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: stretch;
}

.form-card {
  flex: 1 1 320px;
  background: #ffffff;
  border-radius: 20px;
  padding: 24px;
  border: 1px solid var(--edge);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 14px;
  color: var(--muted);
}

select,
input {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--edge);
  font-size: 15px;
  font-family: inherit;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 20;
  box-shadow: 0 14px 30px rgba(18, 18, 18, 0.2);
}

.background-panel {
  background-image: url("https://images.unsplash.com/photo-1498050108023-c5249f4df085?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #f9f6f1;
  border-radius: 28px;
  padding: 50px;
  margin: 0 6vw 70px;
  position: relative;
  overflow: hidden;
}

.background-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(29, 35, 41, 0.55);
}

.background-panel > * {
  position: relative;
  z-index: 1;
}

.footer {
  margin-top: auto;
  padding: 30px 6vw 50px;
  border-top: 1px solid var(--edge);
  background: #f9f6f1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.legal-note {
  font-size: 13px;
  color: #6a6760;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  max-width: 420px;
  background: #fff;
  border: 1px solid var(--edge);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 16px 32px rgba(22, 22, 22, 0.2);
  z-index: 30;
  display: none;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.page-hero {
  display: flex;
  gap: 26px;
  padding: 60px 6vw 40px;
  align-items: center;
}

.page-hero .image-box {
  min-height: 280px;
}

.simple-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.pill {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  font-size: 12px;
  color: var(--muted);
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media (max-width: 980px) {
  .hero,
  .split,
  .page-hero {
    flex-direction: column;
  }

  .hero-card {
    position: static;
    margin-top: 18px;
  }

  .offset-block {
    transform: none;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
