* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", system-ui, sans-serif;
  color: #1c1c1c;
  background-color: #f7f5f2;
}

a {
  color: #234bd8;
  text-decoration: none;
}

a:hover,
button:hover {
  filter: brightness(0.95);
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 6vw;
  background: #f1efe9;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: lowercase;
}

.nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav a {
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.8rem;
  color: #5f5f5f;
  max-width: 240px;
}

.main {
  flex: 1;
}

.section {
  padding: 60px 6vw;
  display: flex;
  gap: 48px;
  align-items: center;
}

.section.alt {
  background: #ffffff;
}

.section.split-reverse {
  flex-direction: row-reverse;
}

.copy {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.copy h1,
.copy h2,
.copy h3 {
  margin: 0;
  line-height: 1.2;
}

.copy p {
  margin: 0;
  line-height: 1.6;
  color: #2c2c2c;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  color: #6b6b6b;
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.btn {
  background: #234bd8;
  color: #ffffff;
  border: none;
  padding: 12px 22px;
  border-radius: 24px;
  cursor: pointer;
  font-size: 0.95rem;
}

.btn.secondary {
  background: transparent;
  color: #234bd8;
  border: 1px solid #234bd8;
}

.img-frame {
  flex: 1;
  background-color: #d8d3c9;
  border-radius: 18px;
  overflow: hidden;
  min-height: 280px;
  display: flex;
  align-items: stretch;
}

.img-frame.compact {
  flex: none;
  min-height: 180px;
  width: 100%;
}

.img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 240px;
  background: #f1f0f5;
  padding: 18px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card .price {
  font-weight: 700;
  color: #234bd8;
}

.card img {
  border-radius: 12px;
}

.form-panel {
  flex: 1;
  background: #ffffff;
  padding: 26px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-panel label {
  font-weight: 600;
  font-size: 0.9rem;
}

.form-panel input,
.form-panel select,
.form-panel textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d2d2d2;
  font-size: 0.95rem;
  font-family: inherit;
}

.form-panel button {
  align-self: flex-start;
}

.inline-note {
  font-size: 0.88rem;
  color: #5c5c5c;
}

.footer {
  padding: 40px 6vw;
  background: #1f1f24;
  color: #e9e7e2;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer a {
  color: #d0dcff;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
}

.footer-column {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 50;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px 18px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  display: none;
  max-width: 320px;
  z-index: 60;
}

.cookie-banner.is-visible {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cookie-actions {
  display: flex;
  gap: 8px;
}

.legal-page {
  padding: 60px 6vw;
  max-width: 960px;
}

.legal-page h1,
.legal-page h2 {
  margin-top: 0;
}

.info-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.info-block {
  flex: 1 1 260px;
  background: #ffffff;
  padding: 18px;
  border-radius: 14px;
}

@media (max-width: 900px) {
  .section {
    flex-direction: column;
  }

  .section.split-reverse {
    flex-direction: column;
  }

  .topbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .nav {
    justify-content: flex-start;
  }

  .sticky-cta {
    position: static;
    margin: 20px 6vw 0;
  }
}
