* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: #121417;
  background-color: #f4f5f7;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 48px;
  background: #111317;
  color: #f5f6f8;
}

.brand {
  font-size: 20px;
  letter-spacing: 0.5px;
}

.nav {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}

.ad-label {
  font-size: 12px;
  background: #2a2f38;
  padding: 6px 10px;
  border-radius: 999px;
}

.hero {
  display: flex;
  min-height: 520px;
  background: #0f1115;
  color: #f9fafb;
}

.split {
  display: flex;
  gap: 24px;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-half {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 54px;
}

.hero-image {
  background-image: url("https://images.unsplash.com/photo-1517694712202-14dd9538aa97?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.section {
  padding: 70px 48px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.section.light {
  background: #ffffff;
}

.section.dark {
  background: #151821;
  color: #f7f8fa;
}

.section.highlight {
  background-image: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #f8fafc;
}

.section.highlight .overlay {
  background: rgba(12, 14, 18, 0.72);
  padding: 40px;
  border-radius: 18px;
}

.cards {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 240px;
  background: #1f2430;
  color: #f7f8fa;
  padding: 24px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card.light {
  background: #ffffff;
  color: #16181c;
  border: 1px solid #e2e5ea;
}

.card img {
  border-radius: 14px;
  background-color: #252a33;
}

.price {
  font-weight: 600;
  font-size: 18px;
}

.cta-row {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  border: none;
  background: #ffb400;
  color: #151821;
  font-weight: 600;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  border: 1px solid currentColor;
  color: inherit;
}

.btn:hover,
.link:hover {
  opacity: 0.85;
}

.link {
  text-decoration: underline;
  cursor: pointer;
}

.form-panel {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  align-items: stretch;
}

.form-box {
  flex: 1 1 320px;
  background: #ffffff;
  color: #121417;
  padding: 28px;
  border-radius: 20px;
  border: 1px solid #e3e6eb;
}

.form-box label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
}

.form-box input,
.form-box select,
.form-box textarea {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 16px;
  border-radius: 12px;
  border: 1px solid #ccd2dc;
  font-size: 15px;
}

.sticky-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 10;
}

.sticky-cta .btn {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.footer {
  margin-top: auto;
  padding: 40px 48px;
  background: #0f1115;
  color: #d9dde3;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.small {
  font-size: 13px;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  background: #111317;
  color: #f4f6f8;
  padding: 18px 22px;
  border-radius: 16px;
  display: none;
  z-index: 15;
}

.cookie-banner.visible {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.inline-note {
  background: #f2f3f6;
  padding: 16px 20px;
  border-left: 4px solid #ffb400;
  border-radius: 12px;
}

.meta-block {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.image-frame {
  background-color: #2b3038;
  border-radius: 16px;
  overflow: hidden;
}

.image-frame.light {
  background-color: #e8ebf0;
}

.two-columns {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.two-columns > div {
  flex: 1 1 280px;
}
