* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #1b1f2a;
  --muted: #5b6474;
  --bg: #f6f4f1;
  --accent: #2f5dff;
  --accent-soft: #e3e9ff;
  --warm: #f0e8dd;
  --cool: #e9eef2;
  --dark: #101722;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.site-header {
  padding: 24px 6vw 0;
}

.nav-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  font-size: 0.95rem;
}

.ad-label {
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  font-size: 0.85rem;
}

.sticky-cta {
  position: sticky;
  top: 0;
  z-index: 5;
  padding: 10px 6vw;
  background: rgba(246, 244, 241, 0.92);
  backdrop-filter: blur(8px);
  display: flex;
  justify-content: flex-end;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn.secondary {
  background: var(--dark);
}

.btn.ghost {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

main {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.section {
  padding: 72px 6vw;
  position: relative;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1 1 320px;
}

.hero {
  padding-top: 40px;
}

.hero h1 {
  font-size: clamp(2.2rem, 3vw, 3rem);
  margin-bottom: 18px;
}

.hero p {
  color: var(--muted);
  font-size: 1.05rem;
}

.image-frame {
  background: var(--cool);
  border-radius: 24px;
  overflow: hidden;
  min-height: 240px;
}

.layer-card {
  padding: 26px;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(16, 23, 34, 0.1);
  margin-top: -40px;
}

.section.bg-insight {
  background: var(--warm);
}

.section.bg-strategy {
  background-image: url("https://images.unsplash.com/photo-1492724441997-5dc865305da7?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
}

.section.bg-strategy::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(16, 23, 34, 0.55);
}

.section.bg-strategy > * {
  position: relative;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.service-card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 240px;
}

.service-card .content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.form-shell {
  background: #fff;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 18px 40px rgba(16, 23, 34, 0.08);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #ccd2dc;
  font-size: 1rem;
  font-family: inherit;
}

.form-status {
  font-size: 0.9rem;
  color: var(--muted);
}

.inline-link {
  color: var(--accent);
  font-weight: 600;
}

.footer {
  padding: 48px 6vw 64px;
  background: #0e1320;
  color: #f1f4f8;
}

.footer .footer-cols {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.footer a {
  color: #f1f4f8;
}

.legal-note {
  margin-top: 24px;
  font-size: 0.9rem;
  color: #c7ced9;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  max-width: 360px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  padding: 18px;
  display: none;
  z-index: 10;
}

.cookie-banner.visible {
  display: block;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  margin-top: 14px;
  flex-wrap: wrap;
}

.section-title {
  margin-bottom: 16px;
  font-size: 1.5rem;
}

.note {
  background: var(--accent-soft);
  padding: 18px;
  border-radius: 16px;
  color: var(--ink);
}

.two-column {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.two-column > div {
  flex: 1 1 260px;
}

.hero-image {
  background: var(--cool);
  border-radius: 28px;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
}

.plain-section {
  padding: 64px 6vw;
}

.divider {
  height: 1px;
  background: rgba(16, 23, 34, 0.1);
  margin: 32px 0;
}
