/* Base */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", "Arial", sans-serif;
  color: #1f1f1f;
  background: #f7f4ef;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

.page {
  width: min(1200px, 92%);
  margin: 0 auto;
  padding: 32px 0 64px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 4%;
  background: #f2eee6;
}

.brand {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.nav {
  display: flex;
  gap: 18px;
  font-size: 0.95rem;
}

.nav a {
  padding: 6px 10px;
  border-radius: 999px;
  transition: background 0.2s ease;
}

.nav a:hover {
  background: #e5ded1;
}

.hero {
  background: #ede6dc;
  padding: 60px 4%;
}

.hero .split {
  align-items: center;
}

.hero h1 {
  font-size: clamp(2rem, 3.4vw, 3.3rem);
  line-height: 1.2;
  margin-bottom: 16px;
}

.hero p {
  font-size: 1.05rem;
  margin-bottom: 20px;
}

.cta-group {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid #1f1f1f;
  font-weight: 600;
}

.btn.primary {
  background: #1f1f1f;
  color: #f7f4ef;
}

.btn.ghost {
  background: transparent;
}

.split {
  display: flex;
  gap: 36px;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .content,
.split .visual {
  flex: 1;
  min-width: 0;
}

.section {
  padding: 64px 4%;
}

.section.light {
  background: #fffaf3;
}

.section.dark {
  background: #1f1f1f;
  color: #f7f4ef;
}

.section.accent {
  background: #e0d6c8;
}

.section.texture-bg {
  background-image: url("texture-light.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.7rem;
  margin-bottom: 12px;
}

.section h2 {
  font-size: clamp(1.6rem, 2.4vw, 2.4rem);
  margin-bottom: 14px;
}

.section p {
  margin-bottom: 14px;
}

.inline-link {
  font-weight: 600;
  text-decoration: underline;
}

.card-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.card {
  flex: 1;
  min-width: 220px;
  background: #fdfaf4;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.card img {
  border-radius: 12px;
  margin-bottom: 12px;
}

.card.dark {
  background: #2b2b2b;
  color: #f7f4ef;
}

.pricing {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pricing-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 12px;
}

.pricing-item span {
  font-weight: 700;
  white-space: nowrap;
}

.form-wrap {
  background: #fdfaf4;
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #c8c2b8;
  font-size: 1rem;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.form-note {
  font-size: 0.85rem;
  opacity: 0.8;
}

.footer {
  background: #151515;
  color: #f7f4ef;
  padding: 42px 4%;
}

.footer .split {
  align-items: center;
}

.footer a {
  color: #f7f4ef;
}

.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #1f1f1f;
  color: #f7f4ef;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  max-width: 320px;
  background: #fdfaf4;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.cookie-actions button {
  border: none;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.cookie-actions .accept {
  background: #1f1f1f;
  color: #f7f4ef;
}

.cookie-actions .reject {
  background: #d7cbb9;
}

.meta-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.meta-list span {
  font-weight: 600;
}

.policy {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 820px;
}

.policy ul {
  padding-left: 18px;
}

.policy li {
  margin-bottom: 8px;
}

@media (max-width: 900px) {
  .split,
  .split.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    right: 12px;
    left: 12px;
    text-align: center;
  }

  .topbar {
    flex-direction: column;
    gap: 10px;
  }
}
