* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  color: #1d2731;
  background: #f7f6f3;
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.header {
  padding: 20px 6vw 10px 6vw;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.brand {
  font-size: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 14px;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 20px 6vw 40px 6vw;
  background: #f0f2f5;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hero-title {
  font-size: 34px;
  line-height: 1.15;
}

.tagline {
  font-size: 16px;
  color: #3f4a55;
}

.primary-btn,
.ghost-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
}

.primary-btn {
  background: #1d2731;
  color: #fff;
}

.ghost-btn {
  border: 1px solid #1d2731;
  color: #1d2731;
  background: transparent;
}

.section {
  padding: 48px 6vw;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section.alt {
  background: #eef1f4;
}

.section.split {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.section h2 {
  font-size: 26px;
  line-height: 1.2;
}

.section p {
  color: #3f4a55;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  color: #6a7a89;
}

.card-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: #fff;
  padding: 20px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 8px 24px rgba(15, 23, 31, 0.08);
}

.card strong {
  font-size: 18px;
}

.quote {
  font-style: italic;
  border-left: 4px solid #1d2731;
  padding-left: 16px;
  color: #2b343f;
}

.pricing-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.price-tag {
  font-size: 22px;
  font-weight: 700;
}

.form-panel {
  background: #fff;
  padding: 24px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 16px 30px rgba(15, 23, 31, 0.08);
}

.form-panel label {
  font-size: 14px;
  color: #4b5866;
}

.form-panel input,
.form-panel select,
.form-panel textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #c6d0da;
  font-size: 14px;
  width: 100%;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer {
  margin-top: auto;
  padding: 30px 6vw 40px 6vw;
  background: #1d2731;
  color: #f7f6f3;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: #d3b58f;
  color: #1d2731;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 10px 20px rgba(29, 39, 49, 0.2);
  z-index: 40;
}

.inline-cta {
  color: #1d2731;
  font-weight: 700;
  border-bottom: 2px solid #1d2731;
  align-self: flex-start;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #1d2731;
  color: #f7f6f3;
  padding: 16px;
  border-radius: 16px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 50;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid #f7f6f3;
  color: #f7f6f3;
  background: transparent;
  font-size: 13px;
}

.cookie-btn.primary {
  background: #f7f6f3;
  color: #1d2731;
  border: none;
}

.two-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 18px;
}

.list li {
  list-style: disc;
}

.highlight {
  background: #fff3e3;
  padding: 16px;
  border-radius: 12px;
  font-weight: 600;
  color: #3a2f25;
}

.page-hero {
  padding: 40px 6vw 30px 6vw;
  background: #eef1f4;
}

.meta-block {
  background: #fff;
  padding: 18px;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer small {
  color: #cbd5df;
}

@media (min-width: 860px) {
  .hero {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .hero-text {
    flex: 1;
  }

  .hero-image {
    flex: 1;
  }

  .section.split {
    flex-direction: row;
    align-items: center;
  }

  .section.split.reverse {
    flex-direction: row-reverse;
  }

  .two-col {
    flex-direction: row;
  }

  .card-row {
    flex-direction: row;
  }

  .pricing-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .pricing-grid .card {
    flex: 1 1 240px;
  }

  .section.split .content {
    flex: 1;
  }

  .section.split .media {
    flex: 1;
  }
}
