* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: #1c1c1c;
  background: #f6f4f1;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 16px;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  gap: 16px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.95rem;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 0.95rem;
}

.nav-cta {
  padding: 10px 18px;
  border-radius: 999px;
  background: #1c1c1c;
  color: #fff;
  font-size: 0.9rem;
}

.split-section {
  display: flex;
  align-items: center;
  gap: 42px;
  padding: 64px 0;
}

.split-section.reverse {
  flex-direction: row-reverse;
}

.split-section.compact {
  padding: 36px 0;
}

.section-tag {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #776c5f;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(2rem, 2.6vw, 3rem);
  margin-bottom: 18px;
}

.section-text {
  font-size: 1.05rem;
  color: #3b3b3b;
  margin-bottom: 20px;
}

.cta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-primary {
  background: #1c1c1c;
  color: #fff;
  padding: 12px 22px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.cta-outline {
  border: 1px solid #1c1c1c;
  padding: 12px 22px;
  border-radius: 12px;
}

.note-link {
  text-decoration: underline;
  color: #1c1c1c;
}

.card-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: #fff;
  padding: 18px;
  border-radius: 16px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
}

.card img {
  width: 110px;
  height: 110px;
  object-fit: cover;
  border-radius: 14px;
}

.card h3 {
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.price {
  font-weight: 700;
  color: #2f2a24;
  margin-top: 6px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #e8e0d6;
  color: #4a3f35;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  margin-bottom: 14px;
}

.stats {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.stat {
  background: #fff;
  padding: 14px 18px;
  border-radius: 14px;
  min-width: 140px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.stat strong {
  font-size: 1.2rem;
  display: block;
}

.testimonial {
  background: #fff;
  padding: 18px;
  border-radius: 16px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  margin-bottom: 14px;
}

.form-panel {
  background: #fff;
  padding: 26px;
  border-radius: 18px;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.08);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

input,
select,
textarea,
button {
  font-family: inherit;
  font-size: 1rem;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #cfc6bb;
  background: #faf8f6;
}

button {
  cursor: pointer;
  border: none;
}

.form-submit {
  padding: 12px 18px;
  border-radius: 12px;
  background: #1c1c1c;
  color: #fff;
  font-weight: 600;
}

.footer {
  padding: 48px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-top: 1px solid #d9d1c7;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 24px;
  background: #1c1c1c;
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  max-width: 360px;
  background: #fff;
  padding: 16px;
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  padding: 8px 12px;
  border-radius: 10px;
  font-size: 0.85rem;
}

.cookie-accept {
  background: #1c1c1c;
  color: #fff;
}

.cookie-reject {
  background: #efe8df;
}

.highlight {
  background: #efe8df;
  padding: 12px;
  border-radius: 12px;
  font-size: 0.95rem;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mini-card {
  background: #fff;
  padding: 14px 16px;
  border-radius: 14px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.05);
}

.mini-card span {
  font-weight: 600;
}

.hero-image {
  position: relative;
}

.hero-image::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 18px;
}

.bg-soft {
  background: #efe8df;
}

.bg-deep {
  background: #1c1c1c;
  color: #fff;
}

.bg-deep .section-text,
.bg-deep .section-title {
  color: #fff;
}

.bg-deep .cta-outline {
  border-color: #fff;
  color: #fff;
}

@media (max-width: 900px) {
  .split-section,
  .split-section.reverse {
    flex-direction: column;
  }

  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    right: 14px;
    bottom: 14px;
  }
}
