* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #1e1e1e;
  background: #f6f5f2;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: #1a4d7a;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 5%;
  background: #f6f5f2;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.ad-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #6a6a6a;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 40px 5% 20px;
}

.hero-visual {
  position: relative;
  display: flex;
  min-height: 380px;
  border-radius: 24px;
  overflow: hidden;
  background: #d7d1c8;
}

.hero-visual img {
  width: 100%;
  height: 100%;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 720px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: #ebe6dc;
  border-radius: 999px;
  font-size: 12px;
}

.section {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 40px 5%;
}

.section.alt {
  background: #ffffff;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.split > div {
  flex: 1 1 280px;
}

.story-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.story-grid .story-item {
  display: flex;
  gap: 18px;
  align-items: center;
  background: #f0ebe1;
  padding: 18px;
  border-radius: 18px;
}

.story-item img {
  width: 140px;
  height: 120px;
  border-radius: 12px;
  background: #cfc8bd;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.button {
  background: #1e1e1e;
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.button.secondary {
  background: #ece6db;
  color: #1e1e1e;
}

.button-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: stretch;
}

.trust-card {
  flex: 1 1 220px;
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.image-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  min-height: 220px;
  background: #d7d1c8;
}

.image-card img {
  width: 100%;
  height: 100%;
}

.pricing {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pricing-item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 16px;
  background: #f0ebe1;
  border-radius: 16px;
}

.form-shell {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #ffffff;
  padding: 24px;
  border-radius: 24px;
}

label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 14px;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d6cfc4;
  font-size: 14px;
  font-family: inherit;
}

.sticky-cta {
  position: sticky;
  bottom: 12px;
  margin: 0 auto 24px;
  width: min(520px, 92%);
  background: #1e1e1e;
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.footer {
  margin-top: auto;
  padding: 30px 5% 40px;
  background: #111111;
  color: #f0ebe1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer a {
  color: #f0ebe1;
}

.legal {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  width: min(640px, 94%);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.page-title {
  font-size: 36px;
  margin: 0;
}

.note {
  font-size: 13px;
  color: #6a6a6a;
}
