* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1f2933;
  background: #f7f8fb;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  object-fit: cover;
}

.container {
  width: min(1200px, 90%);
  margin: 0 auto;
}

.topbar {
  background: #101828;
  color: #f8fafc;
  padding: 14px 0;
}

.topbar .nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.nav-links a,
.nav-links button {
  font-size: 14px;
  padding: 6px 10px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: #f8fafc;
  cursor: pointer;
}

.nav-links a:hover,
.nav-links button:hover {
  background: rgba(255, 255, 255, 0.15);
}

.ad-label {
  font-size: 12px;
  color: #d0d5dd;
  padding: 4px 10px;
  border: 1px dashed #667085;
  border-radius: 999px;
}

.hero {
  padding: 70px 0 50px;
  background: #eef2f7;
}

.split {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text {
  flex: 1;
}

.split .media {
  flex: 1;
  display: flex;
  justify-content: center;
}

.img-frame {
  width: 100%;
  max-width: 520px;
  background: #d7dde6;
  border-radius: 24px;
  overflow: hidden;
  padding: 12px;
}

.img-frame img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 16px;
}

.hero h1 {
  font-size: 40px;
  line-height: 1.2;
  margin-bottom: 16px;
}

.lead {
  font-size: 18px;
  color: #344054;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: none;
  background: #2a5bd7;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.btn.secondary {
  background: #111827;
}

.section {
  padding: 60px 0;
}

.section.alt {
  background: #ffffff;
}

.section.dark {
  background: #111827;
  color: #f9fafb;
}

.section.dark .lead {
  color: #e5e7eb;
}

.card-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 220px;
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 12px;
  background: #e4e8ef;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #e8efff;
  color: #1d4ed8;
  font-size: 12px;
  font-weight: 600;
}

.inline-link {
  color: #1d4ed8;
  text-decoration: underline;
}

.pricing {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pricing-item {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 18px;
  background: #f8fafc;
  border-radius: 16px;
  border: 1px solid #e4e7ec;
}

.pricing-item .price {
  font-weight: 700;
  font-size: 20px;
  color: #2a5bd7;
}

.form-wrap {
  background: #ffffff;
  border-radius: 20px;
  padding: 26px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.1);
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d0d5dd;
  font-size: 15px;
  font-family: inherit;
}

.sticky-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  background: #111827;
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 14px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
}

.sticky-cta:hover {
  background: #1f2937;
}

.footer {
  padding: 40px 0;
  background: #0b1220;
  color: #e5e7eb;
}

.footer a {
  text-decoration: underline;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.footer-col {
  flex: 1 1 200px;
}

.notice {
  font-size: 13px;
  color: #cbd5f5;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.2);
  max-width: 360px;
  display: none;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  flex: 1;
}

.banner-image {
  background: #d9dee7;
  border-radius: 24px;
  overflow: hidden;
}

.banner-image img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.two-column {
  display: flex;
  gap: 30px;
  align-items: stretch;
}

.two-column .box {
  flex: 1;
  background: #ffffff;
  padding: 22px;
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.callout {
  background: #1d4ed8;
  color: #fff;
  padding: 20px;
  border-radius: 16px;
}

.page-title {
  font-size: 32px;
  margin-bottom: 10px;
}

.content-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.link-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.address-box {
  background: #ffffff;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.bg-image {
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.bg-overlay {
  background: rgba(17, 24, 39, 0.7);
  padding: 40px;
  border-radius: 20px;
}

@media (max-width: 900px) {
  .split,
  .split.reverse,
  .two-column {
    flex-direction: column;
  }

  .sticky-cta {
    right: 16px;
    left: 16px;
    text-align: center;
  }
}
