* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1d1d1f;
  background: #f7f6f2;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 6vw;
  background: #f7f6f2;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
}

.nav-links {
  display: flex;
  gap: 20px;
  font-size: 14px;
}

.nav-links a {
  border-bottom: 1px solid transparent;
  padding-bottom: 4px;
}

.nav-links a:hover {
  border-color: #1d1d1f;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 40px 6vw 20px;
}

.hero-split {
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: #fff;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 20px 40px rgba(20, 20, 20, 0.08);
}

.hero-copy h1 {
  font-size: clamp(2rem, 3vw, 3.4rem);
  line-height: 1.1;
  margin-bottom: 16px;
}

.hero-copy p {
  font-size: 1.1rem;
  margin-bottom: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid #1d1d1f;
  background: #1d1d1f;
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.5px;
}

.btn.secondary {
  background: transparent;
  color: #1d1d1f;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 44px 6vw;
}

.split.reverse {
  flex-direction: column-reverse;
}

.split-card {
  background: #fff;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 18px 32px rgba(20, 20, 20, 0.08);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.split-card h2 {
  font-size: 1.8rem;
}

.split-card ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  background: #e8e3d8;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
}

.pricing-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.price-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  background: #f2efe8;
  border-radius: 16px;
}

.price-item strong {
  font-size: 1rem;
}

.price {
  font-weight: 600;
  color: #4d3d2d;
}

.image-frame {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
}

.image-frame .overlay {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(29, 29, 31, 0.7);
  color: #fff;
  padding: 12px 16px;
  border-radius: 14px;
  font-size: 13px;
}

.form-shell {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: #fff;
  padding: 28px;
  border-radius: 24px;
  box-shadow: 0 18px 32px rgba(20, 20, 20, 0.08);
}

.form-shell label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.form-shell input,
.form-shell select,
.form-shell textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid #d7d1c4;
  background: #faf9f5;
  font-size: 14px;
}

.form-shell textarea {
  min-height: 120px;
  resize: vertical;
}

.cta-inline {
  color: #4d3d2d;
  border-bottom: 1px solid #4d3d2d;
}

.footer {
  margin-top: auto;
  padding: 40px 6vw;
  background: #1d1d1f;
  color: #f5f2ec;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: #cf5c3f;
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 13px;
  box-shadow: 0 10px 20px rgba(28, 28, 28, 0.2);
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #fff;
  padding: 16px;
  border-radius: 16px;
  display: none;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 20px 40px rgba(20, 20, 20, 0.12);
  z-index: 20;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.two-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.note {
  font-size: 13px;
  color: #4d3d2d;
}

.section-title {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  color: #4d3d2d;
}

@media (min-width: 860px) {
  .hero-split,
  .split,
  .two-col {
    flex-direction: row;
    align-items: stretch;
  }

  .hero-split > div,
  .split > div,
  .two-col > div {
    flex: 1;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .hero {
    padding: 60px 8vw 20px;
  }

  .nav-links {
    gap: 28px;
  }
}
