@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap");

:root {
  --bg: #f6f4f1;
  --ink: #1c1c1c;
  --muted: #5e5e5e;
  --accent: #2e6a5a;
  --accent-soft: #d7e6e0;
  --sand: #efe8df;
  --fog: #eef2f1;
  --card: #ffffff;
  --shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 80px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
}

.nav .logo {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 14px;
}

.nav .links {
  display: flex;
  gap: 18px;
  font-size: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav .ad-label {
  font-size: 12px;
  color: var(--muted);
  background: var(--sand);
  padding: 6px 10px;
  border-radius: 999px;
}

.hero {
  min-height: 520px;
  background-size: cover;
  background-position: center;
  border-radius: 28px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  margin: 0 24px;
}

.hero-home {
  background-image: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1400&q=80");
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(0, 0, 0, 0.52), rgba(0, 0, 0, 0.2));
}

.hero .hero-content {
  position: relative;
  color: #fff;
  padding: 48px;
  max-width: 520px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.tag {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero .cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  background: var(--accent);
  color: #fff;
  padding: 12px 20px;
  border-radius: 999px;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

.btn-outline {
  background: transparent;
  border: 1px solid #fff;
}

.section {
  margin: 80px 0;
}

.cta-scene {
  background-image: url("https://images.unsplash.com/photo-1494526585095-c41746248156?w=1400&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 28px;
  color: #fff;
  padding: 48px;
  position: relative;
  overflow: hidden;
}

.cta-scene::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.cta-scene .cta-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 520px;
}

.split {
  display: flex;
  gap: 32px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.panel p {
  margin: 0;
  color: var(--muted);
}

.image-frame {
  flex: 1;
  min-height: 320px;
  border-radius: 24px;
  overflow: hidden;
  background: var(--accent-soft);
  box-shadow: var(--shadow);
}

.cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 260px;
  background: var(--card);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price {
  font-weight: 700;
  font-size: 18px;
  color: var(--accent);
}

.badge {
  background: var(--fog);
  padding: 8px 12px;
  border-radius: 12px;
  font-size: 13px;
  display: inline-flex;
  align-self: flex-start;
}

.layered {
  background: var(--fog);
  border-radius: 28px;
  padding: 36px;
  display: flex;
  gap: 32px;
  align-items: center;
}

.layered .panel {
  flex: 2;
}

.layered .stats {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat {
  background: #fff;
  padding: 16px;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.form-shell {
  background: var(--card);
  padding: 32px;
  border-radius: 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-shell label {
  font-weight: 600;
  font-size: 14px;
}

.form-shell input,
.form-shell select {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #d8d8d8;
  font-size: 14px;
}

.sticky-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 10;
  box-shadow: var(--shadow);
}

.inline-link {
  text-decoration: underline;
  font-weight: 600;
}

.footer {
  background: #fff;
  padding: 32px 24px;
  margin-top: 80px;
}

.footer .cols {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.footer small {
  color: var(--muted);
}

.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  background: #fff;
  box-shadow: var(--shadow);
  border-radius: 20px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.subtle {
  color: var(--muted);
  font-size: 14px;
}

.page-hero {
  margin: 0 24px 40px;
  border-radius: 24px;
  overflow: hidden;
  background: var(--sand);
  display: flex;
  flex-direction: column;
}

.page-hero img {
  height: 280px;
}

.page-hero .hero-text {
  padding: 24px;
}

.info-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.info-box {
  flex: 1 1 260px;
  background: #fff;
  padding: 20px;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.legal {
  background: #fff;
  padding: 24px;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

@media (max-width: 900px) {
  .split,
  .layered {
    flex-direction: column;
  }

  .hero {
    margin: 0 16px;
  }

  .page {
    padding: 0 16px 80px;
  }

  .nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
