* {
  box-sizing: border-box;
}

:root {
  --ink: #1f2430;
  --muted: #5b6472;
  --accent: #2f6f6f;
  --accent-soft: #e5f0ee;
  --sun: #f2e8d5;
  --cloud: #f7f7f9;
  --panel: #ffffff;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Noto Sans", sans-serif;
  color: var(--ink);
  background: var(--cloud);
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

.site-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px 6%;
  background: var(--panel);
  border-bottom: 1px solid #e2e5ea;
}

.nav-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ad-label {
  font-size: 0.9rem;
  color: var(--muted);
  max-width: 420px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 72px 6% 56px;
  background: linear-gradient(120deg, rgba(31, 36, 48, 0.85), rgba(31, 36, 48, 0.35)), url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fefefe;
  position: relative;
}

.hero .hero-content {
  max-width: 560px;
}

.hero h1 {
  font-size: 2.5rem;
  margin: 0 0 16px;
}

.hero p {
  margin: 0 0 24px;
  color: #f2f4f8;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--sun);
  color: var(--ink);
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.button.alt {
  background: var(--accent);
  color: #fff;
}

.section {
  padding: 64px 6%;
}

.section.alt {
  background: var(--panel);
}

.section.soft {
  background: var(--accent-soft);
}

.section.insight-bg {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.85)), url("https://images.unsplash.com/photo-1519389950473-47ba0277781c?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text {
  flex: 1 1 320px;
  min-width: 280px;
}

.split .media {
  flex: 1 1 300px;
  min-width: 260px;
  background: #dfe5eb;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
}

.split .media .image-box img {
  height: 320px;
}

.offset-card {
  background: var(--panel);
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 18px 35px rgba(15, 18, 22, 0.08);
  transform: translateY(-18px);
}

.grid-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.card {
  flex: 1 1 220px;
  min-width: 200px;
  background: var(--panel);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 10px 18px rgba(31, 36, 48, 0.06);
}

.card .price {
  font-weight: 700;
  color: var(--accent);
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.image-box {
  background: #e4e8ee;
  border-radius: 12px;
  overflow: hidden;
}

.image-box img {
  width: 100%;
  height: 160px;
}

.layered {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.layered .panel {
  background: var(--panel);
  padding: 26px;
  border-radius: 18px;
  position: relative;
  z-index: 1;
}

.layered .panel.secondary {
  background: #f1f2f4;
  margin-left: 12%;
  margin-top: -20px;
}

.sticky-cta {
  position: sticky;
  top: 80px;
  align-self: flex-start;
  background: var(--panel);
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 16px 28px rgba(31, 36, 48, 0.08);
  min-width: 220px;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: var(--panel);
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 16px 30px rgba(31, 36, 48, 0.08);
  max-width: 520px;
}

.form-wrap label {
  font-weight: 600;
}

.form-wrap input,
.form-wrap select {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #ccd3dd;
  font-size: 1rem;
}

.inline-cta {
  font-weight: 600;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 2px;
}

.footer {
  padding: 40px 6% 60px;
  background: #14161b;
  color: #d9dde4;
}

.footer a {
  color: #d9dde4;
}

.footer .footer-cols {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.footer .disclaimer {
  margin-top: 24px;
  font-size: 0.9rem;
  color: #b8bec8;
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: var(--panel);
  border: 1px solid #d7dbe2;
  padding: 18px;
  border-radius: 14px;
  max-width: 320px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 100;
  box-shadow: 0 14px 24px rgba(31, 36, 48, 0.1);
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.page-hero {
  padding: 52px 6% 32px;
  background: var(--accent-soft);
}

.simple-stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 820px;
}

.contact-card {
  background: var(--panel);
  padding: 24px;
  border-radius: 16px;
  max-width: 520px;
}

.thanks {
  background: var(--panel);
  padding: 32px;
  border-radius: 18px;
  max-width: 520px;
}

@media (max-width: 780px) {
  .hero {
    padding: 56px 6% 48px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .layered .panel.secondary {
    margin-left: 0;
  }

  .sticky-cta {
    position: static;
  }
}
