* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1f2328;
  background-color: #f7f4f0;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.top-bar {
  background: #efe7dd;
  border-bottom: 1px solid #e1d8cd;
}

.top-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 16px;
}

.brand {
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.3px;
}

.ad-label {
  font-size: 0.85rem;
  color: #5d5346;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.95rem;
}

.main-nav a {
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}

.main-nav a:hover {
  border-bottom-color: #1f2328;
}

.hero {
  padding: 64px 0 40px;
}

.split {
  display: flex;
  align-items: stretch;
  gap: 40px;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-media,
.split-content {
  flex: 1;
}

.split-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
}

.hero h1 {
  font-size: 2.6rem;
  margin: 0;
}

.lead {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #433b33;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid #1f2328;
  background: #1f2328;
  color: #fff;
  font-weight: 600;
  transition: transform 0.2s ease;
}

.btn.secondary {
  background: transparent;
  color: #1f2328;
}

.btn:hover {
  transform: translateY(-2px);
}

.section {
  padding: 60px 0;
}

.section-muted {
  background: #ffffff;
}

.section-accent {
  background: #f0e9df;
}

.section-bg {
  background-size: cover;
  background-position: center;
  color: #fff;
  position: relative;
}

.section-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(27, 24, 20, 0.45);
}

.section-bg .container {
  position: relative;
  z-index: 1;
}

.img-frame {
  background-color: #d8d1c6;
  border-radius: 16px;
  overflow: hidden;
}

.img-frame.small {
  max-width: 520px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 12px 30px rgba(31, 35, 40, 0.08);
}

.card .price {
  font-weight: 700;
  font-size: 1.05rem;
}

.card .btn {
  align-self: flex-start;
}

.inline-link {
  font-weight: 600;
  border-bottom: 1px solid #1f2328;
}

.trust-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-left: 0;
  list-style: none;
}

.form-wrap {
  background: #fff;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 16px 40px rgba(31, 35, 40, 0.12);
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #d0c6ba;
  font-size: 1rem;
  background: #fff;
}

.footer {
  padding: 48px 0;
  background: #1f2328;
  color: #f7f4f0;
}

.footer .container {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 20;
}

.sticky-cta .btn {
  box-shadow: 0 12px 30px rgba(31, 35, 40, 0.22);
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  border-radius: 14px;
  padding: 16px 20px;
  box-shadow: 0 12px 30px rgba(31, 35, 40, 0.2);
  z-index: 30;
  width: min(380px, 90%);
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions .btn {
  flex: 1;
  justify-content: center;
}

.page-hero {
  padding: 50px 0 20px;
}

.simple-section {
  padding: 32px 0;
}

.muted-text {
  color: #5b5247;
}

.note-box {
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 12px 26px rgba(31, 35, 40, 0.08);
}

.legal-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: 18px;
}

@media (max-width: 900px) {
  .split,
  .split.reverse {
    flex-direction: column;
  }

  .hero h1 {
    font-size: 2.1rem;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
