* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: #1c1d22;
  background: #f7f5f2;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  max-width: 1160px;
  margin: 0 auto;
  padding: 24px 20px 80px;
}

.masthead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid #d6d1c7;
  padding-bottom: 16px;
  margin-bottom: 32px;
}

.brand {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 1px;
}

.nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
}

.ad-label {
  font-size: 12px;
  padding: 6px 10px;
  background: #12131a;
  color: #f7f5f2;
  border-radius: 999px;
}

.hero {
  display: flex;
  gap: 28px;
  align-items: stretch;
  margin-bottom: 40px;
}

.hero-copy {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.hero-visual {
  flex: 1 1 55%;
  background: #d9d7d0;
  padding: 12px;
  border-radius: 18px;
}

.hero-visual img {
  border-radius: 14px;
}

.section {
  margin-bottom: 48px;
}

.columns {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.column {
  flex: 1 1 280px;
}

.pull-quote {
  padding: 18px;
  border-left: 3px solid #1c1d22;
  background: #f0ede6;
  font-style: italic;
}

.card-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 8px 20px rgba(12, 16, 27, 0.08);
}

.card .media {
  background: #e4e1d9;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  background: #12131a;
  color: #f7f5f2;
  font-size: 14px;
  border: none;
}

.btn-light {
  background: #f7f5f2;
  color: #12131a;
  border: 1px solid #12131a;
}

.split-section {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.split-section .media {
  flex: 1 1 320px;
  background: #e1e3e6;
  border-radius: 16px;
  overflow: hidden;
}

.split-section .content {
  flex: 1 1 320px;
}

.layered {
  position: relative;
  padding: 32px;
  background: #11131a;
  color: #f7f5f2;
  border-radius: 20px;
  overflow: hidden;
}

.layered::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
  background-size: cover;
  background-position: center;
  opacity: 0.25;
}

.layered > * {
  position: relative;
  z-index: 1;
}

.pricing {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pricing-item {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 16px;
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid #e1ddd4;
}

.pricing-item span {
  font-weight: 600;
}

.form-wrap {
  background: #ffffff;
  padding: 24px;
  border-radius: 16px;
  border: 1px solid #e1ddd4;
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 14px;
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #c8c4ba;
  font-size: 14px;
}

.footer {
  border-top: 1px solid #d6d1c7;
  padding-top: 24px;
  font-size: 13px;
  color: #55525c;
}

.footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 24px;
  background: #ffffff;
  border-radius: 999px;
  box-shadow: 0 12px 24px rgba(12, 16, 27, 0.15);
  padding: 8px;
  z-index: 50;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 24px;
  background: #12131a;
  color: #f7f5f2;
  padding: 16px 18px;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 320px;
  z-index: 40;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
  padding: 8px 12px;
  border-radius: 10px;
  border: none;
}

.cookie-accept {
  background: #f7f5f2;
  color: #12131a;
}

.cookie-reject {
  background: transparent;
  color: #f7f5f2;
  border: 1px solid #f7f5f2;
}

.secondary-page {
  max-width: 880px;
  margin: 0 auto;
  padding: 24px 20px 80px;
}

.secondary-hero {
  background: #e4e1d9;
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 28px;
}

.secondary-hero img {
  border-radius: 18px;
}

.list-plain {
  padding-left: 18px;
}

.no-form {
  background: #f0ede6;
  padding: 18px;
  border-radius: 12px;
}

@media (max-width: 860px) {
  .hero {
    flex-direction: column;
  }

  .masthead {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
