/* Base */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: #1d1b1a;
  background: #f7f4f1;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 18px;
}

a {
  color: inherit;
  text-decoration: none;
}

header,
main,
footer {
  width: 100%;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 6vw;
  background: #f7f4f1;
}

.brand {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 0.95rem;
}

.nav-links a {
  padding: 6px 8px;
  border-radius: 16px;
  background: rgba(29, 27, 26, 0.08);
}

.split-section {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 60px 6vw;
  position: relative;
}

.split-section.reverse {
  flex-direction: column-reverse;
}

.split-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.split-visual {
  position: relative;
}

.split-visual .overlay-card {
  position: absolute;
  bottom: -16px;
  right: -12px;
  background: #fff;
  padding: 14px 16px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  font-size: 0.9rem;
  max-width: 200px;
}

.section-label {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.7rem;
  color: #6b5f58;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.btn {
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid #1d1b1a;
  background: #1d1b1a;
  color: #fff;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn.secondary {
  background: transparent;
  color: #1d1b1a;
}

.inline-link {
  text-decoration: underline;
  font-weight: 600;
}

.soft-panel {
  background: #fff;
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.tint-section {
  background: #efe7e1;
}

.dark-section {
  background: #1d1b1a;
  color: #f7f4f1;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: #fff;
  border-radius: 20px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
}

.card img {
  border-radius: 16px;
}

.pricing-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.price-tag {
  font-size: 1.2rem;
  font-weight: 700;
}

.form-panel {
  background: #fff;
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.form-panel form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-panel label {
  font-weight: 600;
  font-size: 0.9rem;
}

.form-panel input,
.form-panel select,
.form-panel textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #c7bdb6;
  font-size: 1rem;
  font-family: inherit;
}

.form-panel button {
  border: none;
  cursor: pointer;
}

.split-pair {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.quote {
  font-style: italic;
  border-left: 3px solid #1d1b1a;
  padding-left: 14px;
}

.sticky-cta {
  position: fixed;
  bottom: 16px;
  right: 16px;
  background: #1d1b1a;
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  display: flex;
  gap: 10px;
  align-items: center;
  z-index: 20;
}

.footer {
  padding: 40px 6vw;
  background: #efe7e1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  background: #fff;
  border-radius: 18px;
  padding: 16px 18px;
  max-width: 320px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12);
  z-index: 30;
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.cookie-actions button {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid #1d1b1a;
  background: transparent;
  cursor: pointer;
}

.cookie-actions .accept {
  background: #1d1b1a;
  color: #fff;
}

@media (min-width: 920px) {
  .split-section,
  .split-section.reverse {
    flex-direction: row;
    align-items: center;
    gap: 60px;
  }

  .split-section.reverse {
    flex-direction: row-reverse;
  }

  .split-content,
  .split-visual {
    flex: 1;
  }

  .cards,
  .pricing-grid {
    flex-direction: row;
  }

  .card,
  .price-card {
    flex: 1;
  }

  .split-pair {
    flex-direction: row;
  }
}
