* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1a1a1a;
  background: #f7f5f2;
  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: 24px;
}

header {
  padding: 18px 0 8px;
  border-bottom: 1px solid #d9d2c7;
  background: #f7f5f2;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
}

.ad-label {
  font-size: 12px;
  color: #6b645c;
  border: 1px solid #c9bfb3;
  padding: 6px 10px;
  border-radius: 999px;
  background: #fffaf3;
}

.hero {
  display: flex;
  gap: 28px;
  align-items: stretch;
  padding: 28px 0 40px;
}

.hero-text {
  flex: 1.1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
}

.hero-media {
  flex: 0.9;
  min-height: 360px;
  background: #e6ded3;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.25));
}

.hero-media img {
  position: absolute;
  inset: 0;
}

.hero h1 {
  font-size: 40px;
  line-height: 1.1;
  margin: 0;
}

.hero p {
  margin: 0;
  font-size: 17px;
  color: #4a453f;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  background: #1a1a1a;
  color: #f7f5f2;
  font-weight: 600;
  border: 1px solid #1a1a1a;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  background: #2f2a24;
}

.btn.outline {
  background: transparent;
  color: #1a1a1a;
}

.section {
  padding: 36px 0;
}

.section h2 {
  margin: 0 0 12px;
  font-size: 28px;
}

.magazine-row {
  display: flex;
  gap: 24px;
  align-items: stretch;
  flex-wrap: wrap;
}

.magazine-col {
  flex: 1;
  min-width: 240px;
}

.image-frame {
  background: #e6ded3;
  border-radius: 16px;
  overflow: hidden;
  min-height: 240px;
}

.note {
  background: #fff;
  border: 1px solid #e0d7ca;
  border-radius: 16px;
  padding: 18px;
}

.stats {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.stat-card {
  flex: 1;
  min-width: 180px;
  border: 1px solid #e0d7ca;
  border-radius: 16px;
  background: #fff;
  padding: 16px;
}

.pricing-grid {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.price-card {
  flex: 1;
  min-width: 220px;
  background: #fff;
  border: 1px solid #e0d7ca;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.price-card .content {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.price {
  font-size: 22px;
  font-weight: 700;
}

.inline-link {
  color: #1a1a1a;
  text-decoration: underline;
  font-weight: 600;
}

.inline-link:hover {
  color: #2f2a24;
}

.form-wrap {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

form {
  flex: 1;
  min-width: 280px;
  background: #fff;
  border: 1px solid #e0d7ca;
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #6b645c;
}

input,
select,
textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #c9bfb3;
  font-size: 15px;
  font-family: inherit;
}

.sticky-cta {
  flex: 0.8;
  min-width: 220px;
  position: sticky;
  top: 24px;
  align-self: flex-start;
  background: #1a1a1a;
  color: #f7f5f2;
  padding: 20px;
  border-radius: 18px;
}

.sticky-cta p {
  margin: 0 0 16px;
}

.footer {
  padding: 28px 0 48px;
  border-top: 1px solid #d9d2c7;
  background: #f7f5f2;
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 14px 0;
}

.disclaimer {
  background: #fffaf3;
  border: 1px solid #e0d7ca;
  border-radius: 12px;
  padding: 14px;
  margin-top: 16px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #1a1a1a;
  color: #f7f5f2;
  padding: 16px;
  border-radius: 16px;
  display: none;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.cookie-actions .btn {
  background: #f7f5f2;
  color: #1a1a1a;
  border-color: #f7f5f2;
}

.banner-note {
  font-size: 13px;
  color: #d6cec2;
}

.split-highlight {
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  border: 1px solid #e0d7ca;
}

.hero-badge {
  display: inline-block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #6b645c;
}

.subtle {
  color: #6b645c;
}

.list-reset {
  margin: 0;
  padding: 0 0 0 18px;
}

.legal-hero {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}

.legal-hero .image-frame {
  flex: 0.8;
  min-width: 240px;
  min-height: 200px;
}

.legal-hero .note {
  flex: 1.2;
  min-width: 240px;
}

@media (max-width: 900px) {
  .hero {
    flex-direction: column;
  }

  .nav-wrap {
    flex-direction: column;
    align-items: flex-start;
  }
}
