* {
  box-sizing: border-box;
}

:root {
  --ink: #1b1f24;
  --muted: #5d6772;
  --accent: #2b4c7e;
  --accent-strong: #1a3560;
  --sand: #f4f2ef;
  --mist: #eef1f5;
  --pearl: #fafafa;
  --olive: #6c7a57;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--pearl);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 20px 8%;
  background: var(--pearl);
  border-bottom: 1px solid #e4e6ea;
  gap: 12px;
}

.nav-left {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand {
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.3px;
}

.ad-label {
  font-size: 13px;
  color: var(--muted);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 14px;
}

.nav-links a:hover,
.button:hover,
.text-link:hover {
  color: var(--accent-strong);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.2px;
}

.button.secondary {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.hero {
  background: var(--mist);
}

.split {
  display: flex;
  flex-direction: row;
  gap: 40px;
  padding: 60px 8%;
  align-items: stretch;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
  justify-content: center;
}

.split-col.tight {
  flex: 0.8;
}

.split-media {
  flex: 1;
  border-radius: 18px;
  overflow: hidden;
  background: #dfe5ec;
  min-height: 280px;
}

.split-media img {
  width: 100%;
  height: 100%;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: var(--sand);
  border-radius: 999px;
  font-size: 12px;
  color: var(--muted);
}

.section-alt {
  background: var(--sand);
}

.section-ink {
  background: var(--ink);
  color: #fff;
}

.section-ink .button.secondary {
  border-color: #fff;
  color: #fff;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-left: 18px;
}

.list li {
  list-style: square;
}

.callout {
  padding: 20px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(20, 24, 30, 0.08);
}

.pricing-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mini-cards {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.mini-card {
  flex: 1;
  min-width: 180px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid #e3e7ec;
  overflow: hidden;
}

.mini-card img {
  width: 100%;
  height: 140px;
}

.mini-card span {
  display: block;
  padding: 10px 12px;
  font-size: 13px;
  color: var(--muted);
}

.pricing-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid #e3e7ec;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 22px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid #e2e6ea;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field input,
.form-field select,
.form-field textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #ccd3db;
  font-size: 14px;
}

.form-fields-hidden {
  display: none;
}

.sticky-cta {
  position: sticky;
  top: 12px;
  align-self: flex-end;
  margin: 24px 8% 0 auto;
  padding: 12px 16px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #e4e6ea;
  box-shadow: 0 8px 16px rgba(20, 24, 30, 0.08);
  display: inline-flex;
  gap: 10px;
  align-items: center;
}

.sticky-cta span {
  font-size: 13px;
  color: var(--muted);
}

.footer {
  margin-top: auto;
  padding: 40px 8%;
  background: #101318;
  color: #e8eaee;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
}

.footer a:hover {
  color: #fff;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.note {
  font-size: 13px;
  color: #d0d6de;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  max-width: 360px;
  background: #fff;
  border: 1px solid #e2e5ea;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 14px 36px rgba(15, 20, 30, 0.2);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 10;
}

.cookie-banner.show {
  display: flex;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.bg-hero {
  background-image: url("https://images.unsplash.com/photo-1450101499163-c8848c66ca85?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-library {
  background-image: url("https://images.unsplash.com/photo-1472220625704-91e1462799b2?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-layer {
  position: relative;
  color: #fff;
}

.bg-layer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 14, 20, 0.55);
}

.bg-layer .split {
  position: relative;
  z-index: 1;
}

.inline-image {
  background: #e3e8ee;
  border-radius: 16px;
  overflow: hidden;
}

.tag {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  color: var(--muted);
}

.two-column {
  display: flex;
  flex-direction: row;
  gap: 18px;
  flex-wrap: wrap;
}

.two-column p {
  flex: 1;
  min-width: 240px;
}

.contact-card {
  background: #fff;
  border: 1px solid #e3e7ec;
  border-radius: 16px;
  padding: 18px;
}

.disclaimer {
  font-size: 12px;
  color: #cdd4dc;
}

.text-link {
  color: var(--accent);
}

@media (max-width: 960px) {
  .split,
  .split.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    position: static;
    margin: 20px 8%;
  }
}
