* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #1f2a37;
  --muted: #4b5563;
  --accent: #2b5aa6;
  --accent-2: #b87a2d;
  --bg: #f5f7fb;
  --panel: #ffffff;
  --soft: #e3e9f2;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

header {
  padding: 24px 6vw 12px;
  position: relative;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.2px;
}

.nav-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.ad-label {
  padding: 4px 10px;
  background: var(--soft);
  border-radius: 999px;
  font-size: 12px;
  color: var(--muted);
}

.cta-btn {
  border: none;
  background: var(--accent);
  color: #ffffff;
  padding: 10px 18px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 14px;
}

.cta-btn.secondary {
  background: var(--accent-2);
}

.container {
  padding: 32px 6vw 64px;
}

.section {
  display: flex;
  gap: 32px;
  align-items: stretch;
  margin: 48px 0;
}

.section.column {
  flex-direction: column;
}

.section.offset-left {
  margin-left: -2vw;
}

.section.offset-right {
  margin-right: -2vw;
}

.section .text {
  flex: 1;
  background: var(--panel);
  padding: 28px;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(31, 42, 55, 0.08);
}

.section .media {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.image-frame {
  border-radius: 24px;
  overflow: hidden;
  background-color: #dfe6ef;
}

.layered {
  background: linear-gradient(120deg, rgba(43, 90, 166, 0.08), rgba(184, 122, 45, 0.08));
  border-radius: 28px;
  padding: 28px;
}

.card-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 220px;
  background: var(--panel);
  border-radius: 22px;
  padding: 20px;
  box-shadow: 0 18px 35px rgba(31, 42, 55, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card strong {
  font-size: 18px;
}

.badge {
  display: inline-block;
  background: var(--soft);
  color: var(--muted);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
}

.split-highlight {
  display: flex;
  gap: 24px;
  align-items: center;
  background: var(--panel);
  padding: 28px;
  border-radius: 30px;
  box-shadow: 0 20px 40px rgba(31, 42, 55, 0.06);
}

.split-highlight .note {
  flex: 1;
}

.split-highlight .image-frame {
  flex: 1;
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px;
  border-radius: 20px;
  background: #fdfdfd;
  border: 1px solid #e5e9f0;
}

.service-price {
  font-weight: 600;
  color: var(--accent);
}

.form-panel {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: var(--panel);
  padding: 28px;
  border-radius: 26px;
  box-shadow: 0 18px 35px rgba(31, 42, 55, 0.08);
}

.form-panel label {
  font-weight: 600;
  font-size: 14px;
}

.form-panel input,
.form-panel select,
.form-panel textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d6dde7;
  font-size: 14px;
  width: 100%;
}

.form-panel button {
  align-self: flex-start;
}

.inline-cta {
  display: inline-block;
  margin-top: 8px;
  font-weight: 600;
}

.floating-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: var(--accent-2);
  color: #ffffff;
  padding: 10px 16px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  z-index: 10;
}

footer {
  padding: 32px 6vw 56px;
  background: #111827;
  color: #e5e7eb;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 18px;
}

.footer-links a {
  color: #e5e7eb;
}

.notice {
  font-size: 13px;
  color: #cbd5f5;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  bottom: 16px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 16px 30px rgba(31, 42, 55, 0.15);
  padding: 16px;
  max-width: 320px;
  z-index: 12;
  display: none;
}

.cookie-banner p {
  margin: 0 0 12px;
  font-size: 13px;
  color: var(--muted);
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  border: none;
  padding: 8px 12px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 13px;
}

.cookie-actions .accept {
  background: var(--accent);
  color: #ffffff;
}

.cookie-actions .reject {
  background: var(--soft);
  color: var(--ink);
}

.page-hero {
  display: flex;
  align-items: center;
  gap: 24px;
  background: var(--panel);
  padding: 28px;
  border-radius: 28px;
  box-shadow: 0 18px 36px rgba(31, 42, 55, 0.08);
}

.page-hero .text {
  flex: 1;
}

.page-hero .image-frame {
  flex: 1;
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.meta {
  color: var(--muted);
  font-size: 14px;
}

.bg-hero {
  background-image: url("https://images.unsplash.com/photo-1498050108023-c5249f4df085?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.bg-hero .text {
  background: rgba(17, 24, 39, 0.78);
  color: #ffffff;
}

.bg-hero .meta {
  color: #e5e7eb;
}

.bg-insight {
  background-image: url("https://images.pexels.com/photos/7845383/pexels-photo-7845383.jpeg");
  background-size: cover;
  background-position: center;
}

.bg-insight .text {
  background: rgba(255, 255, 255, 0.92);
}

.bg-process {
  background-image: url("https://images.unsplash.com/photo-1461749280684-dccba630e2f6?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-process .layered {
  background: rgba(255, 255, 255, 0.9);
}

@media (max-width: 960px) {
  .section,
  .split-highlight,
  .page-hero {
    flex-direction: column;
  }

  .floating-cta {
    right: 12px;
    bottom: 12px;
  }
}
