:root {
  --ink: #1b2430;
  --muted: #5d6776;
  --accent: #2d6cdf;
  --accent-dark: #1f4fa8;
  --paper: #f6f4f0;
  --soft: #eef1f6;
  --warm: #f9f2ea;
  --edge: #d7dde7;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

a {
  color: var(--accent-dark);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

header {
  padding: 20px 6vw 10px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.3px;
  font-size: 1.1rem;
}

.nav-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.ad-label {
  font-size: 0.85rem;
  background: var(--warm);
  color: var(--ink);
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid #e7d7c6;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: stretch;
  padding: 40px 6vw 60px;
}

.hero-content {
  flex: 1 1 320px;
  min-width: 280px;
}

.hero-content h1 {
  font-size: 2.6rem;
  margin-bottom: 12px;
  line-height: 1.15;
}

.hero-content p {
  color: var(--muted);
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid var(--accent-dark);
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.btn.secondary {
  background: #fff;
  color: var(--accent-dark);
}

.hero-media {
  flex: 1 1 320px;
  min-height: 360px;
  background-image: url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?w=1400&q=80');
  background-size: cover;
  background-position: center;
  border-radius: 26px;
  position: relative;
}

.hero-media .overlay-card {
  position: absolute;
  bottom: -28px;
  left: -26px;
  background: #fff;
  padding: 18px 20px;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  width: min(320px, 80%);
}

.section {
  padding: 60px 6vw;
}

.section.alt {
  background: #fff;
}

.section.tight {
  padding-top: 30px;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 16px;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.copy {
  flex: 1 1 320px;
}

.copy p {
  color: var(--muted);
}

.media-frame {
  flex: 1 1 280px;
  background: #e8edf4;
  border-radius: 22px;
  padding: 12px;
}

.media-frame img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 18px;
  display: block;
}

.offset {
  margin-left: 6vw;
  margin-right: 2vw;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.card {
  flex: 1 1 220px;
  background: #fff;
  border-radius: 20px;
  padding: 16px 18px 18px;
  border: 1px solid var(--edge);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card figure {
  margin: 0;
  background: #e9eef6;
  border-radius: 16px;
  overflow: hidden;
  height: 140px;
}

.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.price {
  font-weight: 700;
  font-size: 1.1rem;
}

.badge {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--soft);
  font-size: 0.85rem;
}

.insight {
  background-image: url('https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1400&q=80');
  background-size: cover;
  background-position: center;
  border-radius: 26px;
  padding: 40px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.insight::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(16, 24, 40, 0.55);
}

.insight .insight-content {
  position: relative;
  z-index: 1;
  max-width: 540px;
}

.testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.testimonial {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 18px;
  padding: 16px;
  border-left: 4px solid var(--accent);
}

.form-wrap {
  background: #fff;
  border-radius: 22px;
  padding: 28px;
  border: 1px solid var(--edge);
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--edge);
  font-size: 1rem;
  font-family: inherit;
}

label {
  font-weight: 600;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: var(--accent-dark);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  z-index: 10;
}

footer {
  padding: 40px 6vw 60px;
  background: #101826;
  color: #e6edf7;
}

footer a {
  color: #e6edf7;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.footer-col {
  flex: 1 1 200px;
}

.disclaimer {
  font-size: 0.9rem;
  color: #c5ceda;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--edge);
  padding: 16px;
  display: none;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  z-index: 20;
}

.cookie-banner.show {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  justify-content: space-between;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.small {
  font-size: 0.9rem;
  color: var(--muted);
}

.page-hero {
  padding: 40px 6vw 20px;
}

.page-hero h1 {
  font-size: 2.2rem;
}

.page-image {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 22px;
  display: block;
}

.page-card {
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  border: 1px solid var(--edge);
}

@media (max-width: 900px) {
  .hero-media .overlay-card {
    position: static;
    margin: 16px 0 0;
    width: 100%;
  }

  .offset {
    margin-left: 0;
    margin-right: 0;
  }

  .sticky-cta {
    position: static;
    margin: 20px 6vw 0;
    display: inline-flex;
  }
}
