* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1d1f22;
  --muted: #5c6470;
  --sand: #f4f1ec;
  --clay: #e7ded5;
  --sage: #d7e1db;
  --sky: #e0ecf5;
  --night: #101419;
  --accent: #2f5b8c;
  --accent-dark: #224266;
  --line: #d2d6dc;
  --radius: 18px;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover,
button:hover {
  color: var(--accent-dark);
}

header {
  padding: 28px 6vw 18px;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.brand-name {
  font-size: 24px;
  letter-spacing: 0.8px;
}

.ad-label {
  font-size: 13px;
  color: var(--muted);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 14px;
}

.nav a {
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.nav a:hover {
  border-bottom-color: var(--accent);
}

.hero {
  padding: 20px 6vw 40px;
  display: flex;
  gap: 32px;
  align-items: stretch;
  flex-wrap: wrap;
}

.hero__copy {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
}

.hero__copy h1 {
  font-size: 44px;
  line-height: 1.1;
}

.hero__copy p {
  font-size: 18px;
  color: var(--muted);
}

.hero__media {
  flex: 1 1 320px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--sky);
  min-height: 320px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  border: none;
  cursor: pointer;
  font-size: 15px;
}

.button.secondary {
  background: #ffffff;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.section {
  padding: 50px 6vw;
  display: flex;
  gap: 28px;
  align-items: center;
  flex-wrap: wrap;
}

.section--offset {
  background: var(--sand);
}

.section-bg-insights {
  background-image: url("https://images.unsplash.com/photo-1524504388940-b1c1722653e1?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #eef1f5;
  background-blend-mode: multiply;
}

.section--band {
  background: var(--night);
  color: #ffffff;
}

.section--band a {
  color: #ffffff;
  border-bottom: 1px solid #ffffff;
}

.section__content {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.section__content h3 {
  font-size: 32px;
}

.section__content p {
  color: var(--muted);
}

.section--band .section__content p {
  color: #dfe6ee;
}

.section__media {
  flex: 1 1 320px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--clay);
  min-height: 260px;
}

.cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 220px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card__media {
  border-radius: 12px;
  overflow: hidden;
  background: var(--sage);
  height: 160px;
}

.card h4 {
  font-size: 18px;
}

.price {
  font-weight: 600;
  color: var(--accent-dark);
}

.split-callout {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  align-items: stretch;
}

.split-callout__box {
  flex: 1 1 300px;
  padding: 24px;
  border-radius: var(--radius);
  background: var(--sage);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.split-callout__box.alt {
  background: var(--clay);
}

.form-wrap {
  background: var(--sand);
  border-radius: var(--radius);
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1 1 320px;
}

label {
  font-size: 14px;
  color: var(--muted);
}

input,
select,
textarea {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid var(--line);
  font-size: 15px;
}

.form-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.form-row > div {
  flex: 1 1 220px;
}

.inline-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
}

.business-logic {
  background: var(--sky);
}

.testimonial {
  background: #ffffff;
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  border: 1px solid var(--line);
}

.testimonial__media {
  width: 120px;
  height: 120px;
  border-radius: 16px;
  overflow: hidden;
  background: var(--clay);
}

.footer {
  padding: 40px 6vw 80px;
  background: #0f1216;
  color: #d6dde5;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer a {
  color: #d6dde5;
  text-decoration: underline;
}

.footer__grid {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.footer__col {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 22px;
  z-index: 20;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}

.sticky-cta button {
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.2);
}

.page-hero {
  padding: 30px 6vw 20px;
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  align-items: center;
}

.page-hero h1 {
  font-size: 36px;
  line-height: 1.2;
}

.page-hero__media {
  flex: 1 1 320px;
  min-height: 240px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--clay);
}

.policy-section {
  padding: 28px 6vw;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.policy-section p {
  color: var(--muted);
}

.policy-card {
  flex: 1 1 320px;
  border-radius: var(--radius);
  background: #ffffff;
  border: 1px solid var(--line);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  max-width: 340px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.15);
}

.cookie-banner.show {
  display: flex;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.plain-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.note {
  font-size: 13px;
  color: var(--muted);
}

@media (max-width: 820px) {
  .hero__copy h1 {
    font-size: 34px;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
