* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #182128;
  background: #f7f7f4;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 8%;
  gap: 24px;
  background: #ffffff;
  border-bottom: 1px solid #e3e3dd;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.03em;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.ad-label {
  font-size: 0.85rem;
  color: #5d5f63;
  background: #f2f1ec;
  padding: 6px 10px;
  border-radius: 999px;
}

.main {
  flex: 1;
}

.section {
  padding: 64px 8%;
}

.split {
  display: flex;
  align-items: stretch;
  gap: 48px;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-half {
  flex: 1 1 320px;
  min-width: 280px;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: #6c757d;
  margin-bottom: 8px;
}

.headline {
  font-size: 2.3rem;
  line-height: 1.2;
  margin: 0 0 16px;
}

.lead {
  font-size: 1.1rem;
  margin: 0 0 20px;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.btn {
  border: none;
  padding: 12px 22px;
  border-radius: 999px;
  cursor: pointer;
  background: #1d4ed8;
  color: #fff;
  font-weight: 600;
  transition: transform 0.2s ease;
}

.btn.secondary {
  background: #111827;
}

.btn.text {
  background: transparent;
  color: #1d4ed8;
  padding: 0;
}

.btn:hover {
  transform: translateY(-1px);
}

.image-card {
  border-radius: 20px;
  overflow: hidden;
  background: #dfe7ec;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}

.image-card img {
  width: 100%;
  height: 100%;
}

.panel {
  background: #ffffff;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 18px 36px rgba(13, 38, 76, 0.08);
}

.panel.dark {
  background: #182128;
  color: #f5f5f2;
}

.grid-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-card {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  background: #ffffff;
  border-radius: 18px;
  padding: 20px;
  align-items: center;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.06);
}

.service-card img {
  width: 160px;
  height: 120px;
  border-radius: 12px;
  background: #e1e6eb;
}

.price {
  font-weight: 700;
  color: #1d4ed8;
}

.taglist {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.tag {
  background: #eef2ff;
  color: #1d4ed8;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
}

.background-split {
  background: #111827;
  color: #f8fafc;
  position: relative;
}

.background-split::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1529333166437-7750a6dd5a70?w=1400&q=80");
  background-size: cover;
  background-position: center;
  opacity: 0.2;
}

.background-split .split {
  position: relative;
  z-index: 1;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #d0d6dd;
  font-size: 1rem;
  font-family: inherit;
}

.footer {
  background: #0f172a;
  color: #cbd5f5;
  padding: 40px 8%;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.disclaimer {
  font-size: 0.9rem;
  color: #cbd5f5;
  margin-top: 16px;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 5;
}

.sticky-cta button {
  box-shadow: 0 12px 22px rgba(17, 24, 39, 0.2);
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  left: 18px;
  right: 18px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  display: none;
  z-index: 6;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.note-box {
  background: #f3f4f6;
  border-left: 4px solid #1d4ed8;
  padding: 16px;
  border-radius: 10px;
}

.two-column-text {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.two-column-text > div {
  flex: 1 1 240px;
}

.inline-link {
  color: #1d4ed8;
  text-decoration: underline;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero {
  background: #111827;
  color: #f9fafb;
}

.hero .panel {
  background: rgba(17, 24, 39, 0.75);
  backdrop-filter: blur(4px);
}

.hero-image {
  background: #0f172a;
  border-radius: 24px;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  min-height: 320px;
}

.list-check {
  list-style: none;
  padding: 0;
  margin: 0;
}

.list-check li {
  margin-bottom: 8px;
  padding-left: 24px;
  position: relative;
}

.list-check li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #1d4ed8;
  font-weight: 700;
}

@media (max-width: 800px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    position: static;
    margin: 24px 8%;
  }
}
