* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #1f1d1a;
  background-color: #f8f6f3;
  line-height: 1.6;
}

a {
  color: #2e4c7d;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

header {
  padding: 28px 6%;
  background-color: #f1ece6;
}

.top-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.85rem;
  color: #6a625b;
  max-width: 380px;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  padding: 60px 6%;
  background-color: #e9e3dc;
  gap: 32px;
}

.hero-content {
  flex: 1 1 320px;
  min-width: 280px;
}

.hero-image {
  flex: 1 1 360px;
  min-height: 320px;
  background-color: #d3cbc3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.button {
  background-color: #2e4c7d;
  color: #fff;
  padding: 12px 20px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
}

.button.secondary {
  background-color: #f1ece6;
  color: #2e4c7d;
  border: 1px solid #2e4c7d;
}

.section {
  padding: 58px 6%;
}

.section-soft {
  background-color: #f1ece6;
}

.section-warm {
  background-color: #e9e3dc;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-content {
  flex: 1 1 320px;
  min-width: 260px;
}

.split-image {
  flex: 1 1 320px;
  min-width: 260px;
  background-color: #d9d1c8;
}

.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 220px;
  background-color: #fff;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 10px 25px rgba(31, 29, 26, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card-image {
  width: 100%;
  height: 160px;
  border-radius: 12px;
  overflow: hidden;
  background-color: #e3dbd2;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pricing {
  font-weight: 600;
  color: #1f1d1a;
}

.pill {
  display: inline-flex;
  padding: 6px 14px;
  border-radius: 40px;
  background-color: #f1ece6;
  font-size: 0.85rem;
  color: #4b433b;
}

.form-panel {
  background-color: #fdfbf9;
  border-radius: 22px;
  padding: 26px;
  box-shadow: 0 12px 30px rgba(31, 29, 26, 0.08);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-panel label {
  font-size: 0.9rem;
  color: #4b433b;
}

.form-panel input,
.form-panel select,
.form-panel textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d9d1c8;
  font-size: 0.95rem;
}

.sticky-cta {
  position: sticky;
  bottom: 12px;
  background-color: rgba(46, 76, 125, 0.12);
  margin: 0 6% 40px 6%;
  padding: 16px 22px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.tagline {
  font-size: 1.1rem;
  font-weight: 500;
}

.footer {
  background-color: #1f1d1a;
  color: #f7f3ee;
  padding: 40px 6%;
}

.footer a {
  color: #f7f3ee;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
}

.footer-column {
  flex: 1 1 220px;
}

.muted {
  color: #6a625b;
}

.banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  background-color: #ffffff;
  border-radius: 18px;
  padding: 18px 20px;
  box-shadow: 0 12px 30px rgba(31, 29, 26, 0.18);
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  z-index: 10;
}

.banner-actions {
  display: flex;
  gap: 10px;
}

.content-block {
  max-width: 960px;
}

.centered {
  text-align: center;
}

.legal-list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero h1,
.section h2 {
  line-height: 1.2;
}

.reference-list {
  font-size: 0.9rem;
  color: #d1c7bd;
}

@media (max-width: 800px) {
  .sticky-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}
