* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1b1b1b;
  background: #f6f4f1;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

header {
  padding: 24px 6vw 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.top-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.ad-label {
  font-size: 14px;
  background: #1b1b1b;
  color: #fef9f3;
  padding: 6px 10px;
  border-radius: 6px;
}

.nav-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding-top: 14px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 15px;
}

.nav-links a {
  padding: 6px 0;
  border-bottom: 1px solid transparent;
}

.nav-links a:focus {
  outline: 2px solid #1b1b1b;
  outline-offset: 2px;
}

.cta-link {
  background: #d8c7a9;
  padding: 8px 16px;
  border-radius: 30px;
  font-weight: 600;
}

.hero {
  display: flex;
  gap: 32px;
  padding: 20px 6vw 60px;
  align-items: stretch;
}

.hero-copy {
  flex: 1.1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-copy h1 {
  font-size: 44px;
  line-height: 1.08;
  margin: 0;
}

.hero-copy p {
  font-size: 18px;
  margin: 0;
  max-width: 560px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.button {
  padding: 12px 22px;
  background: #1b1b1b;
  color: #fef9f3;
  border-radius: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  font-size: 15px;
  cursor: pointer;
}

.button.secondary {
  background: #f0e8db;
  color: #1b1b1b;
  border: 1px solid #cbbda3;
}

.hero-media {
  flex: 0.9;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.media-card {
  background: #e8dfcf;
  padding: 14px;
  border-radius: 18px;
}

.media-card img {
  border-radius: 14px;
}

.split-section {
  display: flex;
  gap: 32px;
  padding: 40px 6vw;
  align-items: center;
}

.split-section.reverse {
  flex-direction: row-reverse;
}

.split-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.split-text h2 {
  margin: 0;
  font-size: 30px;
}

.split-image {
  flex: 1;
  background: #e6e0d6;
  border-radius: 18px;
  padding: 10px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.card img {
  border-radius: 12px;
}

.card h3 {
  margin: 0;
  font-size: 18px;
}

.pricing-note {
  font-weight: 600;
  color: #53463b;
}

.layered {
  position: relative;
  margin: 40px 6vw;
  padding: 36px;
  border-radius: 22px;
  background: #1b1b1b;
  color: #fef9f3;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.layered::before {
  content: "";
  position: absolute;
  top: -16px;
  left: 28px;
  right: 28px;
  height: 26px;
  background: #c1a77c;
  border-radius: 16px;
  z-index: 0;
}

.layered-content {
  position: relative;
  z-index: 1;
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.layered-cta {
  position: relative;
  z-index: 1;
  flex: 0 1 220px;
  align-self: center;
  background: #fef9f3;
  color: #1b1b1b;
  padding: 20px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sticky-cta {
  position: sticky;
  top: 20px;
  background: #ede4d3;
  padding: 18px;
  border-radius: 16px;
  align-self: flex-start;
}

.form-section {
  display: flex;
  gap: 32px;
  padding: 40px 6vw 60px;
  flex-wrap: wrap;
  background: #f0e8db;
}

.form-section h2 {
  margin: 0;
}

.form-wrap {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-size: 14px;
}

select,
input {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #c8bca7;
  font-size: 15px;
  background: #fffdfa;
}

.footer {
  margin-top: auto;
  padding: 30px 6vw 40px;
  background: #1b1b1b;
  color: #fef9f3;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.footer small {
  font-size: 13px;
  color: #e0d6c8;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #1b1b1b;
  color: #fef9f3;
  padding: 16px;
  border-radius: 16px;
  width: 280px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 5;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
}

.simple-page {
  padding: 40px 6vw 60px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.simple-page h1 {
  margin: 0;
}

.info-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.info-box {
  flex: 1 1 240px;
  background: #ffffff;
  padding: 18px;
  border-radius: 14px;
}

.highlight {
  background: #e6dcc7;
  padding: 12px 16px;
  border-radius: 12px;
  display: inline-flex;
  align-self: flex-start;
}

.insight-background {
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.background-overlay {
  background: rgba(27, 27, 27, 0.7);
  border-radius: 20px;
  padding: 28px;
  color: #fef9f3;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

@media (max-width: 900px) {
  .hero,
  .split-section {
    flex-direction: column;
  }

  .nav-row {
    flex-direction: column;
    align-items: flex-start;
  }
}
