* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #1f1d1b;
  background: #f7f4ef;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.site-header {
  padding: 24px 0 16px;
  background: #f7f4ef;
}

.header-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo {
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.4px;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.ad-label {
  font-size: 12px;
  color: #4f463f;
  padding: 6px 10px;
  border: 1px solid #c9c0b7;
  border-radius: 999px;
  background: #fffdf9;
}

.hero {
  padding: 40px 0 56px;
}

.hero-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: stretch;
}

.hero-text {
  flex: 1 1 360px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-text h1 {
  font-size: 40px;
  line-height: 1.15;
  margin: 0;
}

.hero-text p {
  margin: 0;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cta-button,
.cta-outline,
.chip-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  background: #1f1d1b;
  color: #f7f4ef;
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease;
}

.cta-button:hover,
.cta-outline:hover,
.chip-button:hover {
  transform: translateY(-2px);
}

.cta-outline {
  background: transparent;
  color: #1f1d1b;
  border-color: #1f1d1b;
}

.hero-visual {
  flex: 1 1 360px;
  min-height: 360px;
  border-radius: 24px;
  overflow: hidden;
  background: #e3d9cf;
}

.section {
  padding: 56px 0;
}

.section-alt {
  background: #fffdf9;
}

.section-title {
  font-size: 28px;
  margin: 0 0 16px;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-text {
  flex: 1 1 320px;
}

.split-image {
  flex: 1 1 320px;
  border-radius: 18px;
  overflow: hidden;
  min-height: 260px;
  background: #efe6dd;
}

.highlight-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 24px 0;
}

.highlight {
  padding: 16px;
  border-radius: 16px;
  background: #f0e9e0;
}

.timeline {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.timeline-card {
  flex: 1 1 240px;
  background: #f8f2ea;
  border-radius: 16px;
  padding: 18px;
}

.testimonial {
  font-style: italic;
  background: #f0e9e0;
  padding: 16px;
  border-radius: 14px;
}

.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.pricing-card {
  flex: 1 1 220px;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(31, 29, 27, 0.08);
  display: flex;
  flex-direction: column;
}

.pricing-card .card-image {
  height: 160px;
  background: #ebe1d6;
}

.pricing-card .card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price {
  font-weight: 700;
  font-size: 20px;
}

.chip-button {
  background: #d9c9b7;
  color: #2b2420;
}

.form-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: stretch;
}

.form-panel {
  flex: 1 1 360px;
  background: #fff;
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0 12px 28px rgba(31, 29, 27, 0.08);
}

.form-panel label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
}

.form-panel input,
.form-panel select,
.form-panel textarea {
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #d5c9bc;
  margin-bottom: 14px;
  font-size: 14px;
  font-family: inherit;
}

.form-note {
  font-size: 13px;
  color: #51483f;
}

.inline-cta {
  font-weight: 600;
  text-decoration: underline;
}

.footer {
  margin-top: auto;
  background: #1f1d1b;
  color: #f7f4ef;
  padding: 32px 0 64px;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
}

.footer a {
  color: #f7f4ef;
}

.legal-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.disclaimer {
  font-size: 13px;
  color: #d7cfc7;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  padding: 12px 18px;
  border-radius: 999px;
  background: #3b2c24;
  color: #fff;
  font-weight: 600;
  z-index: 10;
  box-shadow: 0 10px 24px rgba(31, 29, 27, 0.25);
}

.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  background: #ffffff;
  color: #1f1d1b;
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(31, 29, 27, 0.18);
  padding: 16px 18px;
  display: none;
  z-index: 12;
}

.cookie-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-button {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid #1f1d1b;
  background: #1f1d1b;
  color: #fff;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.cookie-button.secondary {
  background: transparent;
  color: #1f1d1b;
}

.cookie-button:hover {
  transform: translateY(-2px);
}

.page-hero {
  padding: 48px 0;
}

.simple-card {
  background: #fff;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 12px 28px rgba(31, 29, 27, 0.08);
}

.text-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.text-columns > div {
  flex: 1 1 260px;
}

.legal-section {
  padding: 36px 0;
}

.legal-section h2 {
  margin-top: 0;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.badge {
  padding: 8px 14px;
  border-radius: 999px;
  background: #efe6dd;
  font-size: 13px;
  font-weight: 600;
}

@media (max-width: 840px) {
  .hero-text h1 {
    font-size: 32px;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
