* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1f1f1f;
  background-color: #f6f3ee;
  line-height: 1.6;
}

a {
  color: #1f1f1f;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px 6vw 10px;
}

.nav-top {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
}

.brand {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.ad-label {
  font-size: 0.85rem;
  color: #5d5346;
  max-width: 360px;
}

.nav-links {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.95rem;
}

.nav-links a {
  padding: 6px 10px;
  border-radius: 18px;
  background-color: #e6dfd4;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 30px 6vw 40px;
}

.hero-visual {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  background-color: #d9d0c1;
  min-height: 280px;
  display: flex;
  align-items: flex-end;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 280px;
}

.hero-overlay {
  position: absolute;
  bottom: 18px;
  left: 18px;
  right: 18px;
  background-color: rgba(255, 255, 255, 0.88);
  padding: 16px 18px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hero-title {
  font-size: 2.2rem;
  line-height: 1.2;
}

.hero-actions {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  border: none;
  cursor: pointer;
  padding: 12px 18px;
  border-radius: 999px;
  background-color: #1f1f1f;
  color: #f6f3ee;
  font-size: 0.95rem;
}

.btn-outline {
  background-color: transparent;
  color: #1f1f1f;
  border: 1px solid #1f1f1f;
}

.section {
  padding: 36px 6vw;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.section-title {
  font-size: 1.6rem;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.split-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.panel {
  background-color: #ffffff;
  border-radius: 22px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.06);
}

.panel-muted {
  background-color: #efe8db;
}

.image-box {
  border-radius: 22px;
  overflow: hidden;
  background-color: #d9d0c1;
}

.image-box img {
  width: 100%;
  height: 100%;
}

.card-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  width: 100%;
  height: 180px;
  border-radius: 16px;
}

.inline-cta {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  font-weight: 600;
  color: #7a3d1a;
}

.pricing {
  background-color: #1f1f1f;
  color: #f6f3ee;
  border-radius: 26px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.price-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.price-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background-color: rgba(255, 255, 255, 0.08);
  padding: 14px;
  border-radius: 16px;
}

.price {
  font-size: 1.1rem;
  font-weight: 700;
}

.form-area {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-card {
  background-color: #ffffff;
  border-radius: 24px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #c7bdb0;
  font-size: 0.95rem;
}

.form-message {
  font-size: 0.9rem;
  color: #7a3d1a;
}

.footer {
  margin-top: auto;
  padding: 30px 6vw 70px;
  background-color: #efe8db;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.9rem;
}

.disclaimer {
  font-size: 0.85rem;
  color: #4f463b;
}

.sticky-cta {
  position: fixed;
  right: 16px;
  bottom: 16px;
  background-color: #1f1f1f;
  color: #f6f3ee;
  padding: 12px 16px;
  border-radius: 999px;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 80px;
  background-color: #ffffff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 10px;
  flex-wrap: wrap;
}

.hidden {
  display: none;
}

.section-accent {
  background-color: #f2efe9;
}

.section-dark {
  background-color: #1f1f1f;
  color: #f6f3ee;
}

.section-dark .panel {
  background-color: rgba(255, 255, 255, 0.1);
  color: #f6f3ee;
}

.section-dark .inline-cta {
  color: #f6f3ee;
}

.simple-page {
  padding: 32px 6vw 60px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

@media (min-width: 900px) {
  .hero {
    flex-direction: row;
    align-items: stretch;
  }

  .hero-copy {
    width: 45%;
    display: flex;
    flex-direction: column;
    gap: 14px;
    justify-content: center;
  }

  .hero-visual {
    width: 55%;
    min-height: 420px;
  }

  .split {
    flex-direction: row;
    align-items: stretch;
  }

  .split-row {
    flex-direction: row;
  }

  .card-row {
    flex-direction: row;
  }

  .card {
    flex: 1;
  }

  .form-area {
    flex-direction: row;
  }

  .form-area > div {
    flex: 1;
  }
}
