* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Arial", "Helvetica", sans-serif;
  color: #1b1b1f;
  background: #f7f6f3;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 6%;
  background: #ffffff;
}

.logo {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  font-size: 14px;
}

.ad-label {
  padding: 6px 10px;
  background: #edf1ff;
  border-radius: 12px;
  font-size: 12px;
}

.section {
  padding: 40px 6%;
}

.split {
  display: flex;
  gap: 32px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1 1 320px;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 2px;
  color: #5a5f73;
  margin-bottom: 8px;
}

.headline {
  font-size: 34px;
  line-height: 1.2;
  margin-bottom: 16px;
}

.subhead {
  font-size: 18px;
  color: #4a4d5a;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 20px;
}

.btn {
  padding: 12px 20px;
  border-radius: 6px;
  border: 1px solid #222;
  background: #1b1b1f;
  color: #fff;
  cursor: pointer;
  font-size: 15px;
}

.btn.secondary {
  background: transparent;
  color: #1b1b1f;
}

.inline-link {
  font-weight: 600;
  text-decoration: underline;
}

.image-frame {
  border-radius: 12px;
  overflow: hidden;
  background-color: #d7dbe6;
}

.image-frame.alt {
  background-color: #e7efe7;
}

.image-frame.sand {
  background-color: #f1e7d6;
}

.image-frame.steel {
  background-color: #cfd7e3;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 220px;
  background: #ffffff;
  border-radius: 14px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card h3 {
  font-size: 18px;
}

.pricing {
  font-weight: 700;
  color: #1f3a5f;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}

.highlight {
  background: #fff4ec;
  border-left: 4px solid #ff9d6c;
  padding: 16px 20px;
}

.form-shell {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

label {
  font-weight: 600;
  font-size: 14px;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 6px;
  border: 1px solid #ccd2da;
  font-size: 14px;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

.footer {
  background: #1b1b1f;
  color: #e5e5ec;
  padding: 32px 6%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.badge-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.badge {
  background: rgba(255, 255, 255, 0.12);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 4;
}

.sticky-cta button {
  padding: 12px 16px;
  border-radius: 999px;
  border: none;
  background: #ff7a50;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  border-radius: 12px;
  padding: 16px 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  z-index: 5;
  max-width: 820px;
  width: calc(100% - 32px);
}

.cookie-banner p {
  flex: 1 1 260px;
  font-size: 13px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  padding: 8px 14px;
  border-radius: 20px;
  border: 1px solid #1b1b1f;
  background: #1b1b1f;
  color: #fff;
  cursor: pointer;
  font-size: 13px;
}

.cookie-actions button.secondary {
  background: transparent;
  color: #1b1b1f;
}

.notice {
  background: #f0f3ff;
  padding: 18px 22px;
  border-radius: 12px;
}

.columns {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.columns > div {
  flex: 1 1 280px;
}

.meta-block {
  font-size: 13px;
  color: #5c6172;
}

.spacer {
  height: 16px;
}
