* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1d1f24;
  background-color: #f6f4f1;
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.wrap {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.nav {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.4px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.95rem;
}

.nav-links a:hover,
.btn:hover,
.inline-link:hover {
  opacity: 0.8;
}

.ad-disclosure {
  font-size: 0.8rem;
  color: #4d5360;
  max-width: 220px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background-color: #1d1f24;
  color: #f6f4f1;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.btn.secondary {
  background-color: #f6f4f1;
  color: #1d1f24;
  border: 1px solid #1d1f24;
}

.hero {
  padding: 28px 0 48px;
}

.split {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 32px;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-content {
  flex: 1 1 360px;
}

.split-media {
  flex: 1 1 360px;
  position: relative;
}

.image-frame {
  background-color: #d9d2c8;
  border-radius: 24px;
  overflow: hidden;
}

.image-frame.tall {
  height: 440px;
}

.image-frame.medium {
  height: 360px;
}

.image-frame.small {
  height: 240px;
}

.image-frame img {
  width: 100%;
  height: 100%;
}

.section {
  padding: 56px 0;
}

.section.alt {
  background-color: #ffffff;
}

.section.dark {
  background-color: #1d1f24;
  color: #f6f4f1;
}

.section.dark .btn.secondary {
  border-color: #f6f4f1;
  color: #f6f4f1;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 1.6px;
  font-size: 0.75rem;
  color: #8a8f98;
}

.headline {
  font-size: clamp(2.2rem, 3.5vw, 3.4rem);
  margin: 12px 0 16px;
}

.lead {
  font-size: 1.1rem;
  color: #4d5360;
}

.section.dark .lead {
  color: #c9ccd4;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 240px;
  background-color: #ffffff;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card.dark {
  background-color: #2a2e36;
  color: #f6f4f1;
  box-shadow: none;
}

.card img {
  border-radius: 12px;
  width: 100%;
  height: 160px;
  background-color: #c8c2b8;
}

.price {
  font-size: 1.2rem;
  font-weight: 700;
  color: #0e1b2b;
}

.section.dark .price {
  color: #f6f4f1;
}

.inline-link {
  display: inline-flex;
  gap: 6px;
  font-weight: 600;
  color: #1d1f24;
}

.section.dark .inline-link {
  color: #f6f4f1;
}

.list {
  padding-left: 18px;
}

.form-card {
  background-color: #ffffff;
  border-radius: 22px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

label {
  font-weight: 600;
}

input,
select {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #c7ccd6;
  font-size: 1rem;
}

.quote {
  padding: 18px 20px;
  border-left: 4px solid #1d1f24;
  background-color: #f0ece7;
  border-radius: 8px;
}

.section.dark .quote {
  background-color: rgba(255, 255, 255, 0.08);
  border-left-color: #f6f4f1;
}

.footer {
  margin-top: auto;
  background-color: #0f1115;
  color: #f6f4f1;
  padding: 36px 0 60px;
}

.footer a:hover {
  opacity: 0.8;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.footer small {
  color: #b7bac2;
}

.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #ffffff;
  border-radius: 999px;
  padding: 10px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
  z-index: 50;
}

.sticky-cta a {
  display: inline-flex;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 18px;
  background-color: #ffffff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  z-index: 60;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 12px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  background-color: #ffffff;
  border-radius: 999px;
  padding: 8px 14px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.1);
}

.hero-badge span {
  font-weight: 600;
}

.note {
  font-size: 0.9rem;
  color: #5c6270;
}

.section.dark .note {
  color: #c9ccd4;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.wide-image {
  width: 100%;
  height: 320px;
  border-radius: 22px;
  overflow: hidden;
  background-color: #d9d2c8;
}

.wide-image img {
  width: 100%;
  height: 100%;
}

.page-header {
  padding: 36px 0;
}

.simple-section {
  padding: 40px 0;
}

.info-block {
  background-color: #ffffff;
  padding: 24px;
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.info-block.dark {
  background-color: #2a2e36;
  color: #f6f4f1;
}

.legal-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.contact-grid div {
  flex: 1 1 240px;
}
