* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", sans-serif;
  color: #0f1b2d;
  background: #f5f7fb;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

header {
  background: #f5f7fb;
  padding: 24px 6vw 16px;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.nav-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.92rem;
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-color: #6fb3ff;
}

.hero {
  padding: 40px 6vw 80px;
}

.section {
  padding: 70px 6vw;
}

.section.compact {
  padding: 50px 6vw;
}

.section.dark {
  background: #0f1b2d;
  color: #f5f7fb;
}

.section.light {
  background: #ffffff;
}

.section.accent {
  background: #e7effa;
}

.section.pattern {
  background: #0f1b2d url("assets/pattern.svg") center / 160px;
  color: #f5f7fb;
}

.layered {
  position: relative;
  overflow: hidden;
}

.layered::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(111, 179, 255, 0.18), rgba(15, 27, 45, 0.85));
  opacity: 0.8;
}

.layered .split {
  position: relative;
  z-index: 1;
}

.split {
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-content {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.split-media {
  flex: 1 1 320px;
}

h1, h2, h3 {
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

h3 {
  font-size: 1.2rem;
}

p {
  font-size: 1rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  font-weight: 600;
  color: #5b6d86;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 999px;
  background: #0f1b2d;
  color: #ffffff;
  font-weight: 600;
  border: 1px solid #0f1b2d;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn:hover {
  background: #244a72;
  transform: translateY(-2px);
}

.btn.alt {
  background: transparent;
  color: #0f1b2d;
  border-color: #0f1b2d;
}

.btn.light {
  background: #6fb3ff;
  border-color: #6fb3ff;
  color: #0f1b2d;
}

.card-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card,
.info-card {
  background: #ffffff;
  padding: 18px 20px;
  border-radius: 16px;
  box-shadow: 0 12px 24px rgba(15, 27, 45, 0.08);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-card strong {
  font-size: 1.05rem;
}

.price {
  font-weight: 700;
  color: #244a72;
}

.inline-cta {
  color: #1c4c7d;
  font-weight: 600;
  border-bottom: 1px solid currentColor;
  align-self: flex-start;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(111, 179, 255, 0.18);
  color: #0f1b2d;
  font-size: 0.85rem;
}

.stats {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.stat {
  flex: 1 1 120px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
}

.stat span {
  font-size: 1.4rem;
  font-weight: 700;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.92rem;
}

input, select, textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d2d9e6;
  font-size: 0.95rem;
  font-family: inherit;
}

textarea {
  min-height: 120px;
}

.form-note {
  font-size: 0.85rem;
  color: #5b6d86;
}

footer {
  background: #0f1b2d;
  color: #f5f7fb;
  padding: 40px 6vw;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.9rem;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: #6fb3ff;
  color: #0f1b2d;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 16px 30px rgba(15, 27, 45, 0.22);
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  max-width: 360px;
  background: #ffffff;
  padding: 16px;
  border-radius: 16px;
  box-shadow: 0 18px 28px rgba(15, 27, 45, 0.18);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid #0f1b2d;
  background: #0f1b2d;
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
}

.cookie-actions button.secondary {
  background: #ffffff;
  color: #0f1b2d;
}

.page-hero {
  padding: 40px 6vw 20px;
  background: #e7effa;
}

.simple-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 12px;
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.legal {
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 20px 6vw 60px;
}

.legal h2 {
  margin-top: 20px;
}

@media (max-width: 760px) {
  .top-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }

  .cookie-banner {
    left: 16px;
    right: 16px;
  }
}
