*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: #1f2933;
  background: #f5f4f2;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

header {
  padding: 24px 6vw 10px;
}

.nav-shell {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 14px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
}

.ad-label {
  font-size: 12px;
  color: #475569;
  max-width: 220px;
  text-align: right;
}

.split-section {
  display: flex;
  gap: 32px;
  padding: 56px 6vw;
  align-items: center;
  flex-wrap: wrap;
}

.split-section.reverse {
  flex-direction: row-reverse;
}

.split-section .copy {
  flex: 1 1 360px;
}

.split-section .media {
  flex: 1 1 360px;
  min-height: 320px;
  border-radius: 18px;
  overflow: hidden;
  background: #d7dce3;
}

.split-section .media img {
  width: 100%;
  height: 100%;
}

.section-title {
  font-size: 32px;
  margin: 0 0 12px;
}

.section-subtitle {
  font-size: 18px;
  color: #475569;
  margin: 0 0 16px;
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.cta-primary {
  background: #1f6feb;
  color: #ffffff;
  padding: 12px 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.cta-ghost {
  border: 1px solid #1f6feb;
  color: #1f6feb;
  padding: 11px 20px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.cta-inline {
  color: #1f6feb;
  font-weight: 600;
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding: 20px 6vw 60px;
}

.card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  display: flex;
  flex-direction: column;
}

.card-media {
  height: 180px;
  background: #d9dbe2;
}

.card-media img {
  width: 100%;
  height: 100%;
}

.card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: #1f6feb;
}

.highlight {
  background: #101828;
  color: #f8fafc;
  border-radius: 22px;
  padding: 46px 6vw;
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
  margin: 20px 6vw 70px;
}

.highlight .copy {
  flex: 1 1 320px;
}

.highlight .media {
  flex: 1 1 320px;
  border-radius: 16px;
  overflow: hidden;
  background: #3b475d;
  min-height: 240px;
}

.highlight .media img {
  width: 100%;
  height: 100%;
}

.form-shell {
  background: #ffffff;
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 14px;
}

input,
select,
textarea {
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 15px;
  font-family: inherit;
}

.form-note {
  font-size: 13px;
  color: #64748b;
}

footer {
  padding: 40px 6vw 60px;
  background: #0f172a;
  color: #e2e8f0;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
}

.footer-grid a {
  color: #e2e8f0;
}

.disclaimer {
  margin-top: 20px;
  font-size: 13px;
  color: #cbd5f5;
}

.sticky-cta {
  position: sticky;
  bottom: 12px;
  margin: 0 6vw 20px;
  display: flex;
  justify-content: flex-end;
  z-index: 2;
}

.sticky-cta a {
  background: #f97316;
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #ffffff;
  padding: 18px;
  border-radius: 16px;
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.18);
  max-width: 320px;
  z-index: 5;
  display: none;
}

.cookie-banner.active {
  display: block;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

.cookie-actions button {
  border: none;
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 600;
  cursor: pointer;
}

.cookie-accept {
  background: #1f6feb;
  color: #ffffff;
}

.cookie-reject {
  background: #e2e8f0;
  color: #0f172a;
}

.meta-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
}

.page-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.page-content {
  flex: 1;
}
