* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #1b1b1b;
  background-color: #f7f4ef;
  line-height: 1.6;
}

a {
  color: #1b1b1b;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 40px;
  background-color: #f2ede5;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 14px;
}

.nav a {
  padding: 6px 10px;
  border-radius: 20px;
  background-color: #f7f4ef;
}

.ad-label {
  padding: 6px 12px;
  border-radius: 18px;
  background-color: #1b1b1b;
  color: #f7f4ef;
  font-size: 12px;
  letter-spacing: 0.02em;
}

.hero {
  display: flex;
  gap: 24px;
  padding: 40px;
  background-color: #e7e2da;
}

.hero-main {
  flex: 2;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-side {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero h1 {
  font-size: 38px;
  margin: 0;
  line-height: 1.2;
}

.hero p {
  margin: 0;
  font-size: 16px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  border: none;
  padding: 12px 18px;
  border-radius: 26px;
  background-color: #1b1b1b;
  color: #f7f4ef;
  cursor: pointer;
  font-size: 14px;
}

.btn.light {
  background-color: transparent;
  color: #1b1b1b;
  border: 1px solid #1b1b1b;
}

.magazine-row {
  display: flex;
  gap: 28px;
  padding: 40px;
}

.col-main {
  flex: 2;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.col-side {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background-color: #ffffff;
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.card h3,
.card h4 {
  margin: 0;
}

.img-wrap {
  background-color: #d9d1c7;
  border-radius: 16px;
  overflow: hidden;
}

.inline-image {
  display: flex;
  gap: 18px;
  align-items: stretch;
}

.inline-image .img-wrap {
  flex: 1;
  min-height: 220px;
}

.inline-image .text {
  flex: 1;
}

.section-alt {
  background-color: #f1ebe2;
}

.section-dark {
  background-color: #1b1b1b;
  color: #f7f4ef;
}

.section-dark a {
  color: #f7f4ef;
  text-decoration: underline;
}

.section-visual {
  height: 260px;
  border-radius: 20px;
  overflow: hidden;
  background-color: #cfc6bb;
}

.bg-panel {
  background-image: url("https://images.unsplash.com/photo-1500534623283-312aade485b7?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #f7f4ef;
}

.bg-panel .card {
  background-color: rgba(27, 27, 27, 0.75);
  color: #f7f4ef;
}

.full-bleed {
  padding: 0;
}

.full-bleed .section-visual {
  border-radius: 0;
}

.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.pricing-card {
  flex: 1 1 240px;
  background-color: #ffffff;
  padding: 20px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pricing-card span {
  font-weight: 700;
  font-size: 18px;
}

.testimonial {
  padding: 18px;
  border-left: 3px solid #1b1b1b;
  background-color: #ffffff;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background-color: #ffffff;
  border-radius: 20px;
  padding: 22px;
}

label {
  font-size: 14px;
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d2c8bb;
  font-size: 14px;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.footer {
  margin-top: auto;
  padding: 32px 40px;
  background-color: #f2ede5;
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background-color: #1b1b1b;
  color: #f7f4ef;
  border-radius: 30px;
  padding: 12px 18px;
  cursor: pointer;
  z-index: 10;
  font-size: 14px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background-color: #ffffff;
  padding: 18px;
  border-radius: 18px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
  max-width: 320px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
}

.notice {
  font-size: 13px;
  color: #5a5148;
}

@media (max-width: 900px) {
  .hero,
  .magazine-row,
  .inline-image {
    flex-direction: column;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
