* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1d1d1f;
  background: #f6f4f0;
}

a {
  color: #1a5c7a;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px 28px;
  background: #fcfaf6;
  border-bottom: 1px solid #e4dfd5;
}

.nav-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.85rem;
  color: #5c5c66;
  background: #f0ebe3;
  padding: 6px 10px;
  border-radius: 999px;
}

.split {
  display: flex;
  flex-direction: row;
  gap: 36px;
  padding: 52px 8vw;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-block {
  flex: 1;
  min-width: 0;
}

.split-block.narrow {
  flex: 0.9;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.72rem;
  color: #7a6a55;
  margin-bottom: 12px;
}

.hero {
  background: #f1ede6;
}

.hero-copy h1 {
  font-size: 2.5rem;
  margin: 0 0 16px 0;
}

.hero-copy p {
  font-size: 1.05rem;
  line-height: 1.7;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.button {
  border: none;
  padding: 12px 20px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
  background: #1a5c7a;
  color: #fff;
}

.button.secondary {
  background: #efe8dd;
  color: #1d1d1f;
}

.inline-link {
  border-bottom: 1px solid #1a5c7a;
  padding-bottom: 2px;
}

.image-card {
  background: #ddd5c8;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.feature-item {
  padding: 18px;
  background: #ffffff;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
}

.pricing-stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.pricing-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px;
  background: #fefcf9;
  border-radius: 16px;
  border: 1px solid #e7e1d6;
}

.pricing-price {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1a5c7a;
}

.section-accent {
  background: #f3f0ea;
}

.section-dark {
  background: #1f2b33;
  color: #f9f5ef;
}

.section-dark a {
  color: #d5f0ff;
}

.data-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.data-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px;
  background: #ffffff;
  border-radius: 12px;
}

.form-wrap {
  background: #ffffff;
  padding: 26px;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #cfc8bc;
  font-size: 1rem;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

.footer {
  margin-top: auto;
  padding: 32px 8vw;
  background: #ece7df;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.95rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: #1a5c7a;
  color: #fff;
  padding: 12px 16px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.2);
  z-index: 20;
}

.sticky-cta button {
  background: #ffffff;
  color: #1a5c7a;
  border: none;
  padding: 8px 12px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  max-width: 360px;
  background: #ffffff;
  padding: 18px;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  z-index: 30;
  display: none;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
}

.bg-hero {
  background-image: url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
  position: relative;
}

.bg-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 31, 0.6);
}

.bg-hero .split-block {
  position: relative;
  z-index: 1;
}

.bg-story {
  background-image: url("https://images.unsplash.com/photo-1485217988980-11786ced9454?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-trust {
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-process {
  background-image: url("https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-contrast {
  background-image: url("https://images.unsplash.com/photo-1498050108023-c5249f4df085?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.small-note {
  font-size: 0.92rem;
  color: #5f5b53;
}

.centered {
  text-align: center;
}

.two-column {
  display: flex;
  flex-direction: row;
  gap: 24px;
}

.two-column .column {
  flex: 1;
  background: #ffffff;
  padding: 18px;
  border-radius: 14px;
}

@media (max-width: 900px) {
  .split,
  .two-column {
    flex-direction: column;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
