* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1b1e26;
  --muted: #5a6272;
  --paper: #f5f1ea;
  --paper-alt: #eef2f6;
  --accent: #3454ff;
  --accent-2: #00a37a;
  --line: #d7dde6;
  --soft: #ffffff;
}

body {
  font-family: "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 80px;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 24px 24px 8px;
  background: var(--paper);
}

.brand {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.ad-label {
  font-size: 13px;
  color: var(--muted);
  max-width: 280px;
  text-align: right;
}

.main-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 24px 24px;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.nav-cta {
  display: flex;
  gap: 12px;
}

.button,
.outline-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 28px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button {
  background: var(--accent);
  color: #fff;
  border: none;
  box-shadow: 0 8px 20px rgba(52, 84, 255, 0.2);
}

.outline-button {
  background: transparent;
  border: 1px solid var(--ink);
  color: var(--ink);
}

.button:hover,
.outline-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(27, 30, 38, 0.15);
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  padding: 56px 0 40px;
  align-items: center;
}

.hero-text {
  flex: 1 1 320px;
  min-width: 280px;
  padding: 24px;
  background: var(--soft);
  box-shadow: -20px 20px 0 rgba(0, 0, 0, 0.05);
}

.hero-image {
  flex: 1 1 420px;
  min-width: 300px;
  background: #e9edf5;
  padding: 18px;
  transform: translateY(20px);
}

.hero-image img {
  width: 100%;
  height: 420px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 12px;
}

h1 {
  font-size: 38px;
  line-height: 1.2;
  margin-bottom: 16px;
}

h2 {
  font-size: 28px;
  margin-bottom: 12px;
}

h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

p {
  margin-bottom: 12px;
  color: var(--muted);
}

.inline-cta {
  color: var(--accent);
  font-weight: 600;
  border-bottom: 1px solid var(--accent);
}

.offset-section {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding: 44px 0;
  align-items: stretch;
}

.offset-card {
  flex: 1 1 320px;
  background: var(--soft);
  padding: 24px;
  border: 1px solid var(--line);
  box-shadow: 16px 16px 0 rgba(52, 84, 255, 0.08);
}

.offset-media {
  flex: 1 1 380px;
  background: #e8efe9;
  padding: 18px;
}

.offset-media img {
  width: 100%;
  height: 320px;
}

.layered {
  position: relative;
  padding: 56px 0;
}

.layered::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 0;
  right: 0;
  bottom: 24px;
  background: var(--paper-alt);
  z-index: 0;
}

.layered-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}

.layered-content img {
  width: 100%;
  height: 320px;
}

.stack {
  flex: 1 1 320px;
  background: var(--soft);
  padding: 24px;
  border-left: 4px solid var(--accent-2);
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  padding: 32px 0;
}

.service-card {
  flex: 1 1 240px;
  min-width: 220px;
  background: var(--soft);
  border: 1px solid var(--line);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-card img {
  width: 100%;
  height: 180px;
  background: #e0e6f0;
}

.price {
  font-weight: 700;
  color: var(--ink);
}

.pricing-note {
  font-size: 13px;
  color: var(--muted);
}

.model {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 32px 0;
}

.model-block {
  flex: 1 1 240px;
  background: var(--soft);
  padding: 20px;
  border: 1px solid var(--line);
}

.testimonial {
  padding: 18px;
  background: var(--soft);
  border-left: 3px solid var(--accent);
  margin-bottom: 12px;
}

.form-section {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: flex-start;
  padding: 44px 0;
}

form {
  flex: 1 1 320px;
  background: var(--soft);
  padding: 24px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}

input,
select,
textarea {
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 14px;
}

.form-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.form-aside {
  flex: 1 1 260px;
  background: #e7eff9;
  padding: 20px;
}

.form-aside img {
  width: 100%;
  height: 240px;
  background: #d9e4f4;
}

.info-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding: 24px 0;
}

.info-card {
  flex: 1 1 220px;
  background: var(--soft);
  padding: 18px;
  border: 1px solid var(--line);
}

.footer {
  border-top: 1px solid var(--line);
  padding: 28px 24px 60px;
  background: var(--paper);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
  margin-bottom: 12px;
}

.disclaimer {
  font-size: 12px;
  color: var(--muted);
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  background: var(--soft);
  border: 1px solid var(--line);
  padding: 14px 16px;
  max-width: 320px;
  z-index: 11;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.cookie-banner.hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 8px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.cookie-actions button {
  padding: 8px 12px;
  border-radius: 18px;
  border: 1px solid var(--ink);
  background: transparent;
  cursor: pointer;
}

.policy-page {
  padding: 40px 0;
}

.policy-page h1 {
  margin-bottom: 18px;
}

.policy-page ul {
  padding-left: 20px;
  margin-bottom: 16px;
  color: var(--muted);
}

.insight-bg {
  background-image: url("https://images.unsplash.com/photo-1460925895917-afdab827c52f?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.team-bg {
  background-image: url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.strategy-bg {
  background-image: url("https://images.unsplash.com/photo-1485846234645-a62644f84728?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-panel {
  padding: 32px;
  color: #fff;
  border-radius: 18px;
}

.bg-panel p {
  color: #fff;
}

.contact-block {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding: 32px 0 40px;
}

.contact-card {
  flex: 1 1 260px;
  background: var(--soft);
  padding: 20px;
  border: 1px solid var(--line);
}

.simple-hero {
  padding: 32px;
  background: #f1f4f8;
  margin-bottom: 20px;
}

.simple-hero img {
  width: 100%;
  height: 280px;
  background: #e0e6f0;
}

@media (max-width: 720px) {
  .topbar,
  .main-nav {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }

  .ad-label {
    text-align: left;
    max-width: 100%;
  }

  .hero-image {
    transform: none;
  }

  .sticky-cta {
    position: static;
    margin: 16px 24px;
  }

  .cookie-banner {
    left: 12px;
    right: 12px;
    max-width: none;
  }
}
