* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: #1d1b1a;
  background: #f6f3ef;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: 92%;
  max-width: 1100px;
  margin: 0 auto;
}

header {
  padding: 24px 0 12px;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.brand {
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 14px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.ad-label {
  padding: 6px 10px;
  border-radius: 999px;
  background: #ede4da;
  font-size: 12px;
  font-weight: 600;
}

.hero {
  background-image: linear-gradient(120deg, rgba(29, 27, 26, 0.78), rgba(29, 27, 26, 0.2)),
    url("https://images.unsplash.com/photo-1441984904996-e0b6ba687e04?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 110px 0 130px;
}

.hero-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 620px;
}

.hero h1 {
  font-size: 42px;
  line-height: 1.1;
  margin: 0;
}

.hero p {
  font-size: 18px;
  line-height: 1.6;
  margin: 0;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.btn {
  border: none;
  padding: 14px 22px;
  border-radius: 999px;
  background: #f2c2a8;
  color: #1d1b1a;
  font-weight: 600;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.inline-link {
  font-weight: 600;
  text-decoration: underline;
}

section {
  padding: 72px 0;
}

.section-light {
  background: #fffaf5;
}

.section-dark {
  background: #1d1b1a;
  color: #f9f5f1;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .col {
  flex: 1 1 320px;
}

.img-frame {
  background-color: #e7ded3;
  padding: 8px;
  border-radius: 16px;
}

.img-frame img {
  border-radius: 12px;
  width: 100%;
  height: 100%;
}

.story-panel {
  background: #f2e7da;
  padding: 28px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 240px;
  background: #fff;
  padding: 20px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 220px;
}

.card.highlight {
  background: #f6efe6;
}

.card h3 {
  margin: 0;
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  background: #1d1b1a;
  color: #fff;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.04em;
}

.quote {
  border-left: 3px solid #f2c2a8;
  padding-left: 16px;
  font-style: italic;
}

.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.price-card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 20px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price {
  font-size: 24px;
  font-weight: 700;
}

.form-section {
  background: #f4ede4;
  border-radius: 24px;
  color: #1d1b1a;
  padding: 32px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #cbbfb3;
  font-size: 15px;
  font-family: inherit;
}

.radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.radio-card {
  flex: 1 1 200px;
  background: #fff;
  border-radius: 14px;
  padding: 12px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.radio-card input {
  margin-top: 4px;
}

.notice {
  font-size: 14px;
  color: #5b534b;
}

footer {
  margin-top: auto;
  background: #1d1b1a;
  color: #f9f5f1;
  padding: 48px 0;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: space-between;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
}

.cta-bar {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: #1d1b1a;
  color: #fff;
  padding: 14px 18px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 10;
}

.cta-bar .btn {
  background: #f2c2a8;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  max-width: 320px;
  background: #fff;
  color: #1d1b1a;
  padding: 16px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  z-index: 11;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  flex: 1;
}

.highlight-bg {
  background-image: linear-gradient(140deg, rgba(29, 27, 26, 0.84), rgba(29, 27, 26, 0.2)),
    url("https://images.unsplash.com/photo-1483985988355-763728e1935b?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
}

.section-banner {
  background-image: linear-gradient(120deg, rgba(244, 237, 228, 0.92), rgba(244, 237, 228, 0.7)),
    url("https://images.unsplash.com/photo-1441986300917-64674bd600d8?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.simple-hero {
  padding: 80px 0 60px;
}

.list-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.legal-block {
  background: #fff;
  padding: 28px;
  border-radius: 16px;
}

.muted {
  color: #6f645c;
}

@media (max-width: 720px) {
  .hero h1 {
    font-size: 34px;
  }

  .cta-bar {
    left: 18px;
    right: 18px;
    bottom: 12px;
    justify-content: space-between;
  }
}
