* {
  box-sizing: border-box;
}

:root {
  --ink: #1f2426;
  --muted: #5a6a6f;
  --paper: #f7f4ef;
  --mist: #e9eef0;
  --accent: #2f6b5a;
  --accent-dark: #234f43;
  --sand: #e7dfd3;
  --stone: #cdd4d6;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  width: min(1100px, 92vw);
  margin: 0 auto;
}

.nav {
  background: #fff;
  border-bottom: 1px solid var(--mist);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.92rem;
}

.nav-links a {
  color: var(--ink);
  text-decoration: none;
}

.ad-label {
  font-size: 0.8rem;
  color: var(--accent-dark);
  background: var(--sand);
  padding: 6px 10px;
  border-radius: 999px;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 42px 0 32px;
}

.hero-top {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-end;
}

.hero-text {
  flex: 1 1 320px;
}

.hero h1 {
  font-size: clamp(2.4rem, 3.5vw, 3.4rem);
  margin: 0 0 12px;
  line-height: 1.1;
}

.hero p {
  margin: 0;
  color: var(--muted);
  max-width: 520px;
}

.hero-image {
  flex: 1 1 360px;
  background: var(--stone);
  border-radius: 18px;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.magazine-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding: 32px 0;
}

.column {
  flex: 1 1 280px;
  min-width: 240px;
}

.column h2,
.column h3 {
  margin-top: 0;
}

.inline-cta {
  color: var(--accent);
  text-decoration: underline;
}

.feature-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  padding: 28px 0;
}

.feature-card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.08);
}

.feature-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  background: var(--stone);
}

.split-section {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  padding: 36px 0;
  align-items: center;
}

.split-text {
  flex: 1 1 320px;
}

.split-media {
  flex: 1 1 320px;
  background: var(--stone);
  border-radius: 18px;
  overflow: hidden;
}

.split-media img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.cta-ghost {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.pricing-band {
  background: var(--mist);
  padding: 32px 0;
}

.pricing-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.pricing-card {
  flex: 1 1 230px;
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  border: 1px solid #e2e7ea;
}

.pricing-card h4 {
  margin: 0 0 6px;
}

.price-tag {
  font-size: 1.2rem;
  font-weight: 700;
}

.form-section {
  padding: 36px 0 48px;
}

.form-shell {
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.08);
}

.form-shell label {
  font-size: 0.92rem;
  color: var(--muted);
}

.form-shell input,
.form-shell select,
.form-shell textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d7dde0;
  font-size: 1rem;
  font-family: inherit;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.form-row > div {
  flex: 1 1 200px;
}

.footer {
  margin-top: auto;
  background: #fff;
  padding: 24px 0 40px;
  border-top: 1px solid var(--mist);
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-grid a {
  color: var(--ink);
  text-decoration: none;
}

.legal {
  font-size: 0.86rem;
  color: var(--muted);
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: #fff;
  border-radius: 999px;
  padding: 6px;
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.12);
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  display: none;
  gap: 12px;
  flex-direction: column;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
  z-index: 50;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.badge {
  display: inline-block;
  background: var(--sand);
  color: var(--accent-dark);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.8rem;
}

.image-card {
  background: var(--stone);
  border-radius: 14px;
  overflow: hidden;
}

.image-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.note-panel {
  background: #fff;
  border-left: 4px solid var(--accent);
  padding: 18px;
  border-radius: 12px;
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.08);
}

.scene-background {
  background-image: url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #20343a;
  color: #fff;
  padding: 48px 0;
  position: relative;
}

.scene-background::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.scene-background .container {
  position: relative;
  z-index: 1;
}

.no-decoration {
  text-decoration: none;
}

.hidden {
  display: none;
}

@media (max-width: 720px) {
  .sticky-cta {
    left: 18px;
    right: 18px;
    bottom: 12px;
    display: flex;
    justify-content: center;
  }
  .hero-image img,
  .split-media img {
    height: 240px;
  }
}
