* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: #1b1d21;
  background: #f6f7fb;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: #1e5ad7;
  text-decoration: none;
}

.site-header {
  background: #ffffff;
  border-bottom: 1px solid #e6e9f2;
  padding: 24px 6vw;
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.brand-name {
  font-weight: 700;
  font-size: 20px;
}

.brand-tag {
  font-size: 13px;
  color: #5b606b;
}

.nav-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 14px;
}

.ad-label {
  background: #eef1f7;
  color: #4d5260;
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  line-height: 1.4;
}

.section {
  padding: 70px 6vw;
}

.section-alt {
  background: #ffffff;
}

.section-dark {
  background: #0f1424;
  color: #f7f8fd;
}

.split {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text {
  flex: 1 1 320px;
}

.split .media {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.eyebrow {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #667095;
}

.section-dark .eyebrow {
  color: #c6d1ff;
}

.title {
  font-size: 38px;
  margin: 10px 0 16px;
  line-height: 1.1;
}

.subtitle {
  font-size: 18px;
  color: #4a5160;
  line-height: 1.6;
}

.section-dark .subtitle {
  color: #cbd2e6;
}

.button {
  border: none;
  border-radius: 999px;
  padding: 12px 20px;
  background: #1e5ad7;
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 15px;
}

.button.secondary {
  background: #eef1f7;
  color: #1b1d21;
}

.button.dark {
  background: #f7f8fd;
  color: #0f1424;
}

.inline-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.image-frame {
  background: #e6ebf5;
  border-radius: 22px;
  overflow: hidden;
}

.image-frame img {
  width: 100%;
  height: 100%;
}

.card-list {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid #e1e5ef;
  padding: 18px;
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card h3 {
  margin: 0;
  font-size: 18px;
}

.price {
  font-weight: 700;
  color: #1e5ad7;
}

.muted {
  color: #5c6473;
  font-size: 14px;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  background: #eef1f7;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 13px;
}

.form-panel {
  background: #ffffff;
  border-radius: 24px;
  border: 1px solid #e2e6f0;
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-panel label {
  font-size: 13px;
  color: #5c6473;
}

.form-panel input,
.form-panel select,
.form-panel textarea {
  padding: 12px 14px;
  border: 1px solid #d7dbe7;
  border-radius: 12px;
  font-size: 15px;
  background: #f9fafc;
}

.sticky-cta {
  position: sticky;
  bottom: 16px;
  margin: 0 6vw 40px;
  background: #141a2c;
  color: #f7f8fd;
  padding: 16px 20px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer {
  background: #0d1220;
  color: #cbd2e6;
  padding: 40px 6vw;
}

.footer a {
  color: #cbd2e6;
}

.footer-columns {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.footer-column {
  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid #e2e6f0;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  z-index: 10;
}

.cookie-banner.is-hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.simple-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.legal-block {
  background: #ffffff;
  border-radius: 22px;
  border: 1px solid #e2e6f0;
  padding: 26px;
}

.note-box {
  background: #eef1f7;
  border-radius: 16px;
  padding: 14px;
  font-size: 14px;
}

.section-image-bg {
  background-size: cover;
  background-position: center;
  border-radius: 24px;
  padding: 40px;
  background-color: #1a2438;
}

.bg-launch {
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
}

.tight {
  max-width: 560px;
}

@media (max-width: 900px) {
  .title {
    font-size: 30px;
  }
}
