:root {
  --ink: #1b1f23;
  --muted: #5b6670;
  --paper: #f7f4ef;
  --sand: #efe7dc;
  --stone: #e3e1db;
  --accent: #2a5b7a;
  --accent-dark: #1e435a;
  --line: #d7d1c8;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.container {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

.top-bar {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  border-left: 2px solid var(--line);
  padding-left: 14px;
}

.cta-button,
.ghost-button,
.inline-link {
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
}

.cta-button {
  background: var(--accent);
  color: #fff;
  padding: 12px 22px;
}

.cta-button:hover {
  background: var(--accent-dark);
}

.ghost-button {
  border: 1px solid var(--accent);
  color: var(--accent);
  padding: 10px 20px;
}

.ghost-button:hover {
  background: var(--sand);
}

.inline-link {
  color: var(--accent);
  text-decoration: underline;
}

.section {
  padding: 56px 0;
}

.section.alt {
  background: var(--paper);
}

.section.dark {
  background: #111a22;
  color: #f2f5f7;
}

.bg-hero {
  background-color: #0f1a22;
  background-image: url("https://images.unsplash.com/photo-1498050108023-c5249f4df085?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-insight {
  background-color: #1c2b36;
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-process {
  background-color: #e6e1d9;
  background-image: url("https://images.unsplash.com/photo-1489515217757-5fd1be406fef?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.magazine-row {
  display: flex;
  gap: 32px;
  align-items: stretch;
  flex-wrap: wrap;
}

.col-2-3 {
  flex: 2 1 420px;
}

.col-1-3 {
  flex: 1 1 240px;
}

.col-1-2 {
  flex: 1 1 320px;
}

.col-1-4 {
  flex: 1 1 220px;
}

.hero {
  padding: 60px 0 70px;
}

.hero h1 {
  font-size: clamp(2.4rem, 3.6vw, 3.4rem);
  line-height: 1.1;
  margin: 0 0 20px;
}

.hero p {
  font-size: 1.1rem;
  color: var(--muted);
}

.image-frame {
  background: var(--sand);
  border-radius: 18px;
  overflow: hidden;
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.card {
  background: #fff;
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  border: 1px solid #f0ece6;
}

.card h3 {
  margin-top: 0;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.highlight {
  background: var(--sand);
  padding: 26px;
  border-radius: 16px;
}

.quote {
  font-style: italic;
  border-left: 3px solid var(--accent);
  padding-left: 14px;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 5;
}

.sticky-cta button {
  border: none;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.form-wrap {
  background: #fff;
  border-radius: 18px;
  padding: 26px;
  border: 1px solid var(--line);
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: 600;
}

select,
input,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-size: 1rem;
}

.footer {
  padding: 36px 0 50px;
  background: #0f141a;
  color: #e3e8ee;
}

.footer a {
  color: #e3e8ee;
}

.footer-grid {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.footer-col {
  flex: 1 1 220px;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  border: 1px solid var(--line);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  z-index: 6;
  max-width: 360px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.hidden {
  display: none;
}

.muted {
  color: var(--muted);
}

.legal-block {
  max-width: 760px;
  margin: 0 auto;
}

.link-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.stats {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.stat-item {
  padding: 18px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--line);
  flex: 1 1 160px;
}

.map-box {
  background: var(--stone);
  border-radius: 18px;
  padding: 24px;
}

.notice {
  background: #fff4e6;
  border-radius: 14px;
  padding: 18px;
  border: 1px solid #f2d7b2;
}

@media (max-width: 900px) {
  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
  .nav {
    align-items: flex-start;
  }
}
