* {
  box-sizing: border-box;
}

:root {
  --bg: #f7f4f0;
  --ink: #1d1b17;
  --muted: #5a544d;
  --accent: #0b4d8c;
  --accent-2: #e7b874;
  --card: #ffffff;
  --soft: #efe8e0;
  --dark: #111110;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover,
button:hover {
  cursor: pointer;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 6vw 12px;
  gap: 16px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  font-size: 0.95rem;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: center;
}

.nav a {
  font-size: 0.9rem;
}

.ad-label {
  font-size: 0.75rem;
  color: var(--muted);
  border: 1px solid var(--muted);
  padding: 6px 10px;
  border-radius: 999px;
  background: #fff;
}

.hero {
  min-height: 70vh;
  color: #fff;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 80px 6vw;
  background-size: cover;
  background-position: center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(8, 10, 18, 0.55);
}

.hero-content {
  position: relative;
  max-width: 560px;
  background: rgba(8, 10, 18, 0.45);
  padding: 32px;
  border-radius: 12px;
}

.hero-content h1 {
  margin: 0 0 16px;
  font-size: 2.4rem;
  line-height: 1.2;
}

.hero-content p {
  margin: 0 0 24px;
  color: #f0f0f0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: none;
  background: var(--accent-2);
  color: var(--dark);
  font-weight: 600;
  letter-spacing: 0.3px;
}

.btn-outline {
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
}

.section {
  padding: 72px 6vw;
  position: relative;
}

.section.alt {
  background: var(--soft);
}

.section.dark {
  background: var(--dark);
  color: #f8f8f8;
}

.section h2 {
  margin: 0 0 16px;
  font-size: 1.9rem;
}

.section p {
  margin: 0 0 18px;
}

.split {
  display: flex;
  gap: 36px;
  align-items: center;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .copy,
.split .media {
  flex: 1 1 280px;
}

.media-frame {
  background: #dcd3c9;
  border-radius: 16px;
  overflow: hidden;
  min-height: 260px;
}

.media-frame img {
  width: 100%;
  height: 100%;
}

.offset-card {
  background: var(--card);
  padding: 28px;
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  max-width: 520px;
}

.offset-card.shift {
  margin-left: auto;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  background: var(--card);
  border-radius: 18px;
  padding: 20px;
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
}

.card img {
  width: 100%;
  height: 160px;
  border-radius: 12px;
  background: #e0d9d1;
}

.price {
  font-weight: 700;
  font-size: 1.2rem;
}

.tagline {
  font-size: 0.9rem;
  color: var(--muted);
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.timeline-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--accent);
  margin-top: 8px;
  flex: 0 0 auto;
}

.quote {
  background: #fff;
  padding: 20px;
  border-left: 4px solid var(--accent);
  margin-bottom: 16px;
}

.form-shell {
  background: var(--card);
  border-radius: 18px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 560px;
}

form label {
  font-weight: 600;
}

form input,
form select,
form textarea {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #ccc;
  font-size: 1rem;
  width: 100%;
}

.inline-cta {
  font-weight: 600;
}

.footer {
  background: #111010;
  color: #f5f1eb;
  padding: 40px 6vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer a {
  color: #f5f1eb;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: #fff;
  border-radius: 999px;
  padding: 10px 14px;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.15);
  display: flex;
  gap: 10px;
  align-items: center;
  z-index: 20;
}

.sticky-cta button {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 600;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #fff;
  border-radius: 14px;
  padding: 16px 18px;
  max-width: 320px;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.12);
  z-index: 30;
  display: none;
}

.cookie-banner p {
  margin: 0 0 12px;
  font-size: 0.9rem;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions button {
  border: none;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 600;
}

.cookie-accept {
  background: var(--accent);
  color: #fff;
}

.cookie-reject {
  background: #eee;
  color: var(--dark);
}

.bg-hero {
  background-image: url("https://images.unsplash.com/photo-1460925895917-afdab827c52f?w=1400&q=80");
}

.bg-insight {
  background-image: url("https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-strategy {
  background-image: url("https://images.unsplash.com/photo-1553877522-43269d4ea984?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.panel {
  background: rgba(255, 255, 255, 0.92);
  padding: 26px;
  border-radius: 18px;
  max-width: 560px;
}

@media (max-width: 860px) {
  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    padding: 60px 6vw;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
