* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: #1b1f23;
  background-color: #f6f7f8;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 4vw;
  background: #ffffff;
  border-bottom: 1px solid #e2e6ea;
  gap: 1.5rem;
}

.nav-left,
.nav-right {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ad-label {
  font-size: 0.85rem;
  color: #4f5b66;
  padding: 0.35rem 0.6rem;
  border: 1px dashed #c5cbd3;
  border-radius: 999px;
}

.primary-cta {
  padding: 0.7rem 1.2rem;
  background: #1f4b6e;
  color: #ffffff;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.secondary-cta {
  padding: 0.6rem 1.1rem;
  border: 1px solid #1f4b6e;
  border-radius: 999px;
  color: #1f4b6e;
  font-weight: 600;
  background: transparent;
  cursor: pointer;
}

.hero {
  padding: 4.5rem 4vw 2rem;
}

.split {
  display: flex;
  gap: 3rem;
  align-items: stretch;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > .pane {
  flex: 1 1 320px;
}

.pane-card {
  background: #ffffff;
  padding: 2.4rem;
  border-radius: 24px;
  box-shadow: 0 24px 48px rgba(18, 33, 48, 0.08);
}

.image-wrap {
  background-color: #cdd5df;
  border-radius: 24px;
  overflow: hidden;
  min-height: 280px;
}

.section {
  padding: 3.5rem 4vw;
}

.section.light {
  background: #ffffff;
}

.section.dark {
  background: #142635;
  color: #f1f5f8;
}

.section.dark a {
  color: #f1f5f8;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.tagline {
  font-size: 1.15rem;
  color: #4d5c69;
}

.card-row {
  display: flex;
  gap: 1.6rem;
  flex-wrap: wrap;
}

.service-card {
  flex: 1 1 260px;
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #e6ecf1;
  display: flex;
  flex-direction: column;
}

.service-card .card-body {
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.price {
  font-weight: 700;
  color: #1f4b6e;
}

.stats {
  display: flex;
  gap: 1.8rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.stat {
  background: #eaf0f6;
  padding: 1.2rem 1.4rem;
  border-radius: 16px;
  flex: 1 1 200px;
}

.form-card {
  background: #ffffff;
  padding: 2rem;
  border-radius: 24px;
  border: 1px solid #e1e7ee;
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 0.7rem 0.9rem;
  border-radius: 12px;
  border: 1px solid #cbd4dc;
  font-size: 1rem;
  width: 100%;
  font-family: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.inline-link {
  color: #1f4b6e;
  font-weight: 600;
}

.sticky-zone {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.sticky-cta {
  flex: 1 1 240px;
  position: sticky;
  top: 1.2rem;
  align-self: flex-start;
  background: #1f4b6e;
  color: #ffffff;
  padding: 1.8rem;
  border-radius: 20px;
}

.sticky-cta .secondary-cta {
  border-color: #ffffff;
  color: #ffffff;
}

.footer {
  margin-top: auto;
  padding: 2.5rem 4vw;
  background: #0c1720;
  color: #c9d2da;
  font-size: 0.95rem;
}

.footer-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.2rem;
}

.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(12, 23, 32, 0.2);
  padding: 1.5rem;
  max-width: 320px;
  border: 1px solid #e6ecf1;
  display: none;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 0.8rem;
  margin-top: 1rem;
}

.cookie-actions button {
  flex: 1;
}

.note {
  background: #eef4f9;
  padding: 1rem 1.3rem;
  border-radius: 12px;
  color: #375067;
}

.cta-row {
  margin-top: 1.6rem;
}

.card-actions {
  margin-top: 1.5rem;
}

.stacked-notes {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pill {
  display: inline-flex;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  background: #e0e8f2;
  font-size: 0.85rem;
  color: #2b3f52;
}

@media (max-width: 880px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    padding-top: 2.5rem;
  }

  .sticky-cta {
    position: static;
  }
}
