* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #1d1d1f;
  background-color: #f7f6f3;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 6%;
  background-color: #f7f6f3;
  border-bottom: 1px solid #e3e0d9;
}

.nav-left,
.nav-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.brand {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.ad-label {
  font-size: 12px;
  color: #5a5a61;
}

.nav-links {
  display: flex;
  gap: 16px;
  font-size: 14px;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding: 48px 6% 36px;
  position: relative;
}

.hero-text {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-title {
  font-size: 42px;
  line-height: 1.1;
}

.hero-panel {
  flex: 1 1 320px;
  position: relative;
  background-color: #dfe8ef;
  min-height: 340px;
}

.hero-panel img {
  height: 100%;
}

.hero-note {
  background-color: #ffffff;
  padding: 18px 20px;
  border-left: 4px solid #1d1d1f;
  max-width: 340px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.btn {
  padding: 12px 20px;
  background-color: #1d1d1f;
  color: #ffffff;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 14px;
}

.btn-outline {
  background-color: transparent;
  border: 1px solid #1d1d1f;
  color: #1d1d1f;
}

.section {
  padding: 42px 6%;
}

.section-tight {
  padding: 30px 6%;
}

.section-title {
  font-size: 28px;
  margin-bottom: 18px;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
}

.split.reverse {
  flex-direction: row-reverse;
}

.panel {
  flex: 1 1 320px;
  background-color: #ffffff;
  padding: 26px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.panel-accent {
  background-color: #eff4f8;
}

.image-frame {
  flex: 1 1 320px;
  background-color: #dfe8ef;
  min-height: 280px;
}

.image-frame.tall {
  min-height: 360px;
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 220px;
  background-color: #ffffff;
  border: 1px solid #e2e2e2;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px;
}

.card-image {
  width: 100%;
  height: 160px;
  background-color: #e1e8ec;
}

.price {
  font-weight: 700;
  font-size: 18px;
}

.inline-cta {
  font-weight: 600;
  border-bottom: 2px solid #1d1d1f;
  padding-bottom: 2px;
}

.bg-vision {
  background-image: url("https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.bg-vision .panel {
  background-color: rgba(29, 29, 31, 0.78);
  color: #ffffff;
}

.quote-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.quote {
  flex: 1 1 260px;
  background-color: #ffffff;
  padding: 20px;
  border-left: 4px solid #1d1d1f;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background-color: #ffffff;
  padding: 24px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-row input,
.form-row select,
.form-row textarea {
  padding: 10px 12px;
  border: 1px solid #cfcfcf;
  font-size: 14px;
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background-color: #1d1d1f;
  color: #ffffff;
  padding: 12px 18px;
  font-size: 13px;
  z-index: 20;
}

.footer {
  margin-top: auto;
  padding: 32px 6%;
  background-color: #f0efeb;
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 13px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  background-color: #ffffff;
  border: 1px solid #d6d6d6;
  padding: 16px;
  max-width: 320px;
  z-index: 30;
  display: none;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.notice {
  font-size: 14px;
  color: #4c4c52;
}

.legal-block {
  background-color: #ffffff;
  padding: 22px;
  border: 1px solid #e2e2e2;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tag {
  background-color: #1d1d1f;
  color: #ffffff;
  padding: 4px 8px;
  font-size: 12px;
  display: inline-flex;
  align-self: flex-start;
}

@media (max-width: 860px) {
  .hero-title {
    font-size: 34px;
  }

  .nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}
