.root {
  --ink: #111318;
  --muted: #5a606b;
  --sand: #f3f0ea;
  --mist: #eef2f5;
  --accent: #2a4d8f;
  --accent-soft: #d9e4f7;
  --ink-soft: #1f2430;
  --line: #d6dbe3;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.topbar {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 28px 6vw 18px;
}

.topbar-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand-name {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.brand-tagline {
  font-size: 14px;
  color: var(--muted);
}

.ad-label {
  font-size: 13px;
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-soft);
  background: #fff;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 14px;
  color: var(--muted);
}

.nav a {
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 30px 6vw 40px;
}

.hero-visual {
  display: flex;
  justify-content: flex-end;
  background: var(--mist);
  padding: 18px;
}

.bg-soft {
  background-color: #e9edf4;
}

.bg-warm {
  background-color: #f5f1ec;
}

.bg-card {
  background-color: #f2f4f7;
}

.bg-dark {
  background-color: #1a2132;
}

.hero-visual img {
  width: 100%;
  height: 360px;
  border-radius: 18px;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 650px;
}

.hero h1 {
  font-size: 36px;
  margin: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  color: var(--accent);
  font-weight: 600;
  background: #fff;
}

.button.primary {
  background: var(--accent);
  color: #fff;
}

.section {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 46px 6vw;
}

.section.alt {
  background: var(--sand);
}

.section.mist {
  background: var(--mist);
}

.section.bg-press {
  background-image: url("https://images.unsplash.com/photo-1515378791036-0648a3ef77b2?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #f5f7fb;
}

.section.bg-press .offset-block {
  background: rgba(15, 19, 32, 0.72);
  border-color: rgba(255, 255, 255, 0.2);
  color: #f5f7fb;
}

.section.bg-press .section-sub {
  color: #d6dbe6;
}

.section.bg-strategy {
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.section.bg-strategy .offset-block {
  background: rgba(255, 255, 255, 0.86);
}

.section-title {
  font-size: 26px;
  margin: 0;
}

.section-sub {
  color: var(--muted);
  max-width: 680px;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1 1 280px;
}

.offset-block {
  background: #fff;
  border: 1px solid var(--line);
  padding: 22px;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(24, 34, 54, 0.08);
}

.metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.metric-card {
  flex: 1 1 180px;
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  border: 1px solid var(--line);
}

.media-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.media-card {
  flex: 1 1 220px;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.media-card img {
  width: 100%;
  height: 160px;
}

.media-card div {
  padding: 16px;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.service-card {
  flex: 1 1 260px;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
}

.service-card img {
  width: 100%;
  height: 170px;
}

.service-card .card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 520px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

label {
  font-size: 14px;
  color: var(--muted);
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-size: 15px;
  font-family: inherit;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

.form-status {
  font-size: 14px;
  color: var(--accent);
}

.inline-link {
  color: var(--accent);
  font-weight: 600;
}

.quote {
  font-style: italic;
  color: var(--ink-soft);
}

.cta-band {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px;
  border-radius: 20px;
  background: var(--accent-soft);
}

.sticky-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 14px;
  box-shadow: 0 8px 18px rgba(16, 20, 40, 0.2);
  z-index: 10;
}

.footer {
  margin-top: auto;
  padding: 36px 6vw 48px;
  background: #0f1320;
  color: #e6e9f2;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer a {
  color: #e6e9f2;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.references {
  font-size: 13px;
  color: #c7ccda;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  max-width: 360px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 10px 26px rgba(18, 25, 40, 0.16);
  display: none;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.plain-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px;
  background: #fff;
}

.legal-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  color: var(--muted);
}

@media (max-width: 820px) {
  .hero h1 {
    font-size: 30px;
  }

  .sticky-cta {
    right: 14px;
    bottom: 14px;
  }
}
