* {
  box-sizing: border-box;
}

:root {
  --ink: #1b1b1b;
  --muted: #5a6068;
  --sand: #f5f2ec;
  --sky: #eef3f7;
  --stone: #d7d1c7;
  --accent: #1d5b6a;
  --accent-dark: #123943;
  --line: #e4e1db;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: var(--accent-dark);
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.top-bar {
  background: var(--sand);
  border-bottom: 1px solid var(--line);
}

.top-bar-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.4px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 14px;
}

.ad-label {
  font-size: 12px;
  color: var(--muted);
  border: 1px dashed var(--muted);
  padding: 6px 10px;
  border-radius: 999px;
}

.main {
  flex: 1;
}

.section {
  padding: 60px 24px;
}

.section-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  align-items: center;
}

.split {
  flex-direction: row;
}

.split.reverse {
  flex-direction: row-reverse;
}

.stack {
  flex-direction: column;
  align-items: flex-start;
}

.panel {
  flex: 1;
  min-width: 0;
}

.panel-narrow {
  flex: 0 0 40%;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 1.8px;
  font-size: 12px;
  color: var(--muted);
}

.hero-title {
  font-size: 42px;
  line-height: 1.1;
  margin: 12px 0 16px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 18px;
}

.btn {
  border: none;
  background: var(--accent);
  color: #ffffff;
  padding: 12px 20px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn.secondary {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.btn.ghost {
  background: transparent;
  color: var(--accent-dark);
  border: 1px solid transparent;
}

.image-frame {
  border-radius: 18px;
  overflow: hidden;
  background: var(--stone);
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
}

.metric-card {
  background: var(--sky);
  padding: 16px 20px;
  border-radius: 12px;
  flex: 1 1 150px;
}

.metric-card strong {
  display: block;
  font-size: 20px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.service-card {
  flex: 1 1 240px;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: #ffffff;
}

.service-card .card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price-tag {
  font-weight: 700;
  color: var(--accent-dark);
}

.soft-bg {
  background: var(--sand);
}

.deep-bg {
  background: #0f2a31;
  color: #f7f4ee;
}

.deep-bg a {
  color: #f7f4ee;
}

.bg-section {
  position: relative;
  overflow: hidden;
}

.bg-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #13262d;
}

.bg-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.bg-content {
  position: relative;
  z-index: 1;
}

.form-panel {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px;
  background: #ffffff;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 14px;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 6px;
  border: 1px solid var(--line);
  font-family: inherit;
}

.footer {
  background: #101517;
  color: #d9d6d0;
  padding: 36px 24px;
}

.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.disclaimer {
  font-size: 13px;
  color: #b7b4af;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px;
  max-width: 320px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  z-index: 15;
  display: none;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.legal-block {
  max-width: 860px;
}

.page-hero {
  padding: 40px 24px 0;
}

.page-hero-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  gap: 32px;
  align-items: center;
}

.page-hero h1 {
  margin: 0 0 10px;
}

@media (max-width: 900px) {
  .section-inner,
  .page-hero-inner {
    flex-direction: column;
  }

  .panel-narrow {
    flex-basis: auto;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
