* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --bg: #f6f3ef;
  --ink: #1c1c1c;
  --muted: #5a5f66;
  --accent: #1f4b99;
  --accent-soft: #dfe8f7;
  --sand: #ece4d8;
  --slate: #111827;
  --card: #ffffff;
  --line: #d8d2c8;
}

body {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.topbar {
  padding: 20px 6vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.brand {
  font-weight: 700;
  text-transform: lowercase;
  letter-spacing: 0.4px;
}

.nav-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.78rem;
  padding: 6px 10px;
  border: 1px solid var(--line);
  background: var(--sand);
  color: var(--slate);
  border-radius: 999px;
}

.hero {
  min-height: 72vh;
  display: flex;
  align-items: stretch;
  padding: 40px 6vw;
  background: var(--sand);
}

.hero-media {
  flex: 1;
  background: #c9d3e5;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
}

.hero-content {
  flex: 1;
  padding: 20px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}

.hero h1 {
  font-size: clamp(2rem, 2.8vw, 3.2rem);
  line-height: 1.15;
}

.hero p {
  color: var(--muted);
  max-width: 520px;
}

.cta-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn.secondary {
  background: transparent;
  border-color: var(--accent);
  color: var(--accent);
}

.split {
  display: flex;
  gap: 30px;
  padding: 70px 6vw;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.split-content h2 {
  font-size: clamp(1.6rem, 2vw, 2.4rem);
}

.split-content p {
  color: var(--muted);
}

.split-media {
  flex: 1;
  min-height: 320px;
  border-radius: 18px;
  overflow: hidden;
  background: #c9d3e5;
}

.highlight {
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.services-grid {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.service-card {
  flex: 1 1 240px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-image {
  height: 160px;
  background: #d4dbe8;
}

.img-frame {
  background: #d4dbe8;
}

.service-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.metrics {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.metric {
  flex: 1 1 160px;
  padding: 16px;
  border-radius: 14px;
  background: var(--accent-soft);
  color: var(--slate);
}

.form-wrap {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--line);
  font-size: 1rem;
  font-family: inherit;
}

textarea {
  resize: vertical;
  min-height: 120px;
}

.sticky-cta {
  position: sticky;
  bottom: 10px;
  margin: 30px 6vw 60px;
  background: var(--slate);
  color: #fff;
  padding: 16px 20px;
  border-radius: 14px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.sticky-cta a {
  background: #fff;
  color: var(--slate);
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 600;
}

.footer {
  margin-top: auto;
  padding: 40px 6vw;
  background: #fff;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 14px;
  color: var(--muted);
}

.footer-nav {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.disclaimer {
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px 18px;
  display: flex;
  gap: 12px;
  align-items: center;
  max-width: 680px;
  width: calc(100% - 40px);
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-left: auto;
}

.cookie-btn {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--sand);
  font-weight: 600;
}

.cookie-btn.primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.page-header {
  padding: 50px 6vw 20px;
}

.page-header h1 {
  font-size: clamp(2rem, 2.6vw, 2.8rem);
}

.simple-split {
  display: flex;
  gap: 30px;
  padding: 20px 6vw 60px;
  flex-wrap: wrap;
}

.simple-card {
  flex: 1 1 300px;
  padding: 20px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #fff;
}

.list {
  padding-left: 18px;
}

.small-note {
  font-size: 0.9rem;
  color: var(--muted);
}

.references {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.9rem;
}

.bg-hero {
  background-image: url("https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-insight {
  background-image: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=800&q=80");
  background-size: cover;
  background-position: center;
}

.bg-process {
  background-image: url("https://images.unsplash.com/photo-1489515217757-5fd1be406fef?w=800&q=80");
  background-size: cover;
  background-position: center;
}

.bg-trust {
  background-image: url("https://images.unsplash.com/photo-1444653614773-995cb1ef9efa?w=800&q=80");
  background-size: cover;
  background-position: center;
}

.bg-analysis {
  background-image: url("https://images.unsplash.com/photo-1474631245212-32dc3c8310c6?w=600&q=80");
  background-size: cover;
  background-position: center;
}

.bg-balance {
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=600&q=80");
  background-size: cover;
  background-position: center;
}

.bg-monitor {
  background-image: url("https://images.unsplash.com/photo-1520607162513-77705c0f0d4a?w=600&q=80");
  background-size: cover;
  background-position: center;
}

.bg-structure {
  background-image: url("https://images.unsplash.com/photo-1460925895917-afdab827c52f?w=800&q=80");
  background-size: cover;
  background-position: center;
}

@media (max-width: 900px) {
  .hero {
    flex-direction: column;
  }

  .split,
  .split.reverse {
    flex-direction: column;
  }

  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
  }
}
