*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: #1c1f24;
  background-color: #f4f6f7;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 6%;
  background-color: #ffffff;
  border-bottom: 1px solid #e2e6ea;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.brand-name {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.brand-sub {
  font-size: 14px;
  color: #58606b;
}

.nav-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.ad-label {
  font-size: 12px;
  color: #6b7280;
  background-color: #f0f4f7;
  padding: 6px 10px;
  border-radius: 999px;
}

.site-nav {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: flex-end;
  font-size: 14px;
}

.site-nav a {
  padding: 6px 10px;
  border-radius: 999px;
  background-color: #ffffff;
  border: 1px solid #dde3ea;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.site-nav a:hover {
  background-color: #1c1f24;
  color: #ffffff;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  min-height: 440px;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  align-items: stretch;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-content,
.split-media {
  flex: 1 1 320px;
  padding: 48px 6%;
}

.split-content h1,
.split-content h2 {
  margin-top: 0;
}

.split-content p {
  line-height: 1.7;
  color: #3a424c;
}

.split-media {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #dfe6eb;
}

.split-media img {
  width: 100%;
  height: 100%;
  max-height: 460px;
}

.section {
  padding: 56px 6%;
  background-color: #ffffff;
}

.section-alt {
  background-color: #eef2f5;
}

.section-dark {
  background-color: #1c1f24;
  color: #f9fafb;
}

.section-dark p,
.section-dark li {
  color: #d1d5db;
}

.layered {
  position: relative;
  overflow: hidden;
}

.layered::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(28, 31, 36, 0.75), rgba(28, 31, 36, 0.2));
}

.layered .layered-inner {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
  justify-content: space-between;
}

.layered-card {
  background-color: #ffffff;
  padding: 28px;
  border-radius: 18px;
  max-width: 420px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.layered-card h3 {
  margin-top: 0;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid #1c1f24;
  background-color: #1c1f24;
  color: #ffffff;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.btn.outline {
  background-color: transparent;
  color: #1c1f24;
}

.btn:hover {
  transform: translateY(-1px);
  background-color: #0f1115;
}

.btn.outline:hover {
  background-color: #1c1f24;
  color: #ffffff;
}

.metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.metric {
  flex: 1 1 160px;
  background-color: #ffffff;
  border-radius: 16px;
  padding: 18px 20px;
  border: 1px solid #e5e7eb;
}

.metric strong {
  display: block;
  font-size: 24px;
  margin-bottom: 6px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.cards.stacked {
  flex-direction: column;
}

.cards.stacked .card {
  max-width: 520px;
}

.card {
  flex: 1 1 240px;
  background-color: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  display: flex;
  flex-direction: column;
}

.card .card-media {
  background-color: #d5dde5;
}

.card .card-media img {
  width: 100%;
  height: 180px;
}

.card .card-body {
  padding: 18px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.price {
  font-weight: 700;
  color: #0f172a;
}

.inline-link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: #1d4ed8;
  font-weight: 600;
}

.inline-link:hover {
  text-decoration: underline;
}

.form-wrap {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 32px;
  border: 1px solid #e5e7eb;
  max-width: 720px;
}

.form-wrap.compact {
  max-width: 520px;
}

.metric-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-wrap form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: 600;
  margin-bottom: 6px;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #cbd5e1;
  font-size: 15px;
  font-family: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 15px;
  color: #3b4552;
}

.footer {
  padding: 40px 6% 80px;
  background-color: #0f172a;
  color: #e5e7eb;
}

.footer a {
  color: #e5e7eb;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 18px;
  font-size: 14px;
}

.disclaimer {
  margin-top: 24px;
  font-size: 13px;
  color: #cbd5f5;
}

.sticky-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  padding: 12px 18px;
  border-radius: 999px;
  background-color: #0f172a;
  color: #ffffff;
  font-weight: 600;
  border: 1px solid #0f172a;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.2);
  z-index: 20;
  transition: transform 0.2s ease;
}

.sticky-cta:hover {
  transform: translateY(-2px);
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 18px;
  background-color: #ffffff;
  border-radius: 16px;
  padding: 16px 20px;
  border: 1px solid #e5e7eb;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  z-index: 30;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.bg-hero {
  background-image: url("https://images.pexels.com/photos/38190067/pexels-photo-38190067.jpeg");
  background-size: cover;
  background-position: center;
}

.image-frame {
  background-color: #dfe6eb;
  border-radius: 16px;
  overflow: hidden;
}

.two-column {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.two-column > div {
  flex: 1 1 260px;
}

@media (max-width: 900px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-wrap {
    align-items: flex-start;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
