* {
  box-sizing: border-box;
}

:root {
  --ink: #11151c;
  --muted: #5b6470;
  --accent: #2b5f8e;
  --accent-2: #2f8f83;
  --bg: #f7f5f2;
  --card: #ffffff;
  --soft: #eef2f5;
  --warm: #f1ebe4;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover,
button:hover {
  opacity: 0.9;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

header {
  padding: 28px 6vw;
  background: #ffffff;
  border-bottom: 1px solid #e4e6ea;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  font-size: 1.2rem;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}

.ad-label {
  background: #f2f0ff;
  color: #3c2d79;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.85rem;
}

main {
  padding: 0 6vw 80px;
}

.section {
  padding: 64px 0;
}

.split {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1 1 320px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
  color: var(--muted);
}

.hero {
  background: linear-gradient(120deg, rgba(43, 95, 142, 0.12), rgba(47, 143, 131, 0.1));
  border-radius: 32px;
  padding: 48px;
}

.hero-image {
  border-radius: 24px;
  overflow: hidden;
  background: #dfe6ee;
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.btn {
  padding: 12px 22px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  background: var(--accent);
  color: white;
}

.btn.secondary {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.inline-card {
  background: var(--card);
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 14px 40px rgba(16, 24, 40, 0.08);
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-item {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  background: var(--card);
  padding: 18px 22px;
  border-radius: 18px;
  border: 1px solid #eceff3;
  flex-wrap: wrap;
}

.service-item span {
  color: var(--muted);
}

.image-card {
  border-radius: 18px;
  overflow: hidden;
  background: #dde5f0;
}

.quote {
  background: var(--warm);
  border-radius: 20px;
  padding: 24px;
}

.quote.spaced {
  margin-top: 22px;
}

.form-wrap {
  background: #ffffff;
  border-radius: 28px;
  padding: 32px;
  border: 1px solid #e7e9ed;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d9dce1;
  font-size: 1rem;
}

.section-alt {
  background: var(--soft);
  border-radius: 28px;
  padding: 48px;
}

.bg-vision {
  background-image: url("https://images.unsplash.com/photo-1492724441997-5dc865305da7?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
  position: relative;
}

.bg-vision::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(14, 20, 30, 0.65);
  border-radius: 28px;
}

.bg-vision > * {
  position: relative;
  z-index: 1;
}

.bg-insight {
  background-image: url("https://images.unsplash.com/photo-1520607162513-77705c0f0d4a?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
  position: relative;
}

.bg-insight::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(25, 47, 64, 0.65);
  border-radius: 28px;
}

.bg-insight > * {
  position: relative;
  z-index: 1;
}

.metrics {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.metric-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 18px 22px;
  flex: 1 1 180px;
  border: 1px solid #edf0f4;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 20;
  padding: 12px 18px;
  border-radius: 999px;
  border: none;
  background: var(--accent-2);
  color: white;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

footer {
  background: #0f1822;
  color: #d7dee7;
  padding: 42px 6vw;
}

.footer-cols {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.footer-cols div {
  flex: 1 1 220px;
}

.disclaimer {
  font-size: 0.85rem;
  color: #b6c0cc;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #ffffff;
  border-radius: 18px;
  padding: 18px 22px;
  border: 1px solid #dfe3e8;
  display: none;
  z-index: 30;
}

.cookie-actions {
  margin-top: 12px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-actions button {
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: transparent;
  cursor: pointer;
  color: var(--accent);
}

.cookie-actions button.primary {
  background: var(--accent);
  color: white;
}

.simple-hero {
  background: #ffffff;
  border-radius: 24px;
  padding: 42px;
  margin: 32px 0;
}

.contact-block {
  background: var(--card);
  padding: 28px;
  border-radius: 22px;
  border: 1px solid #e7e9ed;
}

.legal-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.legal-list div {
  background: #ffffff;
  border-radius: 18px;
  padding: 18px 22px;
  border: 1px solid #edf0f4;
}
