* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1b1c20;
  --muted: #575d6b;
  --sand: #f7f4ef;
  --mist: #eef1f5;
  --stone: #d9d4cc;
  --accent: #3b5ad9;
  --accent-dark: #2f46ad;
  --warm: #f2e6d6;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover,
button:hover {
  filter: brightness(0.95);
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 7vw;
  background: #fff;
}

.brand {
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--ink);
}

.nav {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.ad-label {
  background: var(--warm);
  color: var(--ink);
  padding: 6px 10px;
  font-size: 0.8rem;
  border-radius: 999px;
}

.hero {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  background: var(--sand);
  overflow: hidden;
  padding: 0 7vw 80px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1500534314209-a25ddb2bd429?w=1400&q=80");
  background-size: cover;
  background-position: center;
  opacity: 0.25;
}

.hero-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 520px;
  padding-top: 80px;
  z-index: 1;
}

.hero h1 {
  font-size: 2.8rem;
  line-height: 1.1;
}

.hero p {
  color: var(--muted);
  font-size: 1.1rem;
}

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-secondary {
  background: #fff;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.hero-card {
  position: relative;
  margin-left: auto;
  margin-top: 120px;
  width: 40%;
  min-width: 260px;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(16, 24, 40, 0.12);
  z-index: 1;
}

.hero-card .image-shell {
  height: 280px;
  background: var(--stone);
}

.hero-card .card-body {
  padding: 20px;
}

.section {
  padding: 80px 7vw;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.offset-blocks {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
}

.offset-left {
  flex: 1 1 320px;
  background: var(--mist);
  padding: 30px;
  border-radius: 18px;
}

.offset-right {
  flex: 1 1 320px;
  margin-top: 40px;
  background: #fff;
  padding: 30px;
  border-radius: 18px;
  border: 1px solid #e2e6ee;
}

.inline-media {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  align-items: center;
}

.inline-media .media-shell {
  flex: 1 1 300px;
  height: 240px;
  background: var(--stone);
  border-radius: 18px;
  overflow: hidden;
}

.svg-shell {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--stone);
}

.inline-media .media-text {
  flex: 1 1 320px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #ebedf2;
  display: flex;
  flex-direction: column;
}

.card-media {
  height: 160px;
  background: var(--stone);
}

.card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price {
  font-weight: 700;
  color: var(--accent-dark);
}

.overlay-section {
  position: relative;
  background: var(--mist);
  overflow: hidden;
}

.overlay-section::after {
  content: "";
  position: absolute;
  top: 20px;
  right: -40px;
  width: 50%;
  height: 80%;
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
  background-size: cover;
  background-position: center;
  opacity: 0.35;
}

.overlay-content {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 520px;
  z-index: 1;
}

.testimonial {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

.testimonial .media-shell {
  flex: 0 1 260px;
  height: 200px;
  background: var(--stone);
  border-radius: 16px;
  overflow: hidden;
}

.testimonial .quote {
  flex: 1 1 320px;
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  border-left: 4px solid var(--accent);
}

.form-shell {
  background: #fff;
  border-radius: 20px;
  padding: 28px;
  border: 1px solid #e3e6ee;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-shell label {
  font-weight: 600;
  font-size: 0.9rem;
}

.form-shell input,
.form-shell select,
.form-shell textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #cfd5e2;
  border-radius: 12px;
  font-size: 1rem;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sticky-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(59, 90, 217, 0.3);
  z-index: 20;
}

.footer {
  margin-top: auto;
  background: var(--sand);
  padding: 40px 7vw;
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 0.9rem;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #fff;
  border-radius: 16px;
  padding: 18px 20px;
  box-shadow: 0 12px 30px rgba(16, 24, 40, 0.15);
  max-width: 320px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 25;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.page-header {
  padding: 70px 7vw 30px;
  background: var(--mist);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.content-block {
  padding: 40px 7vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.legal-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--muted);
}

.tagline {
  font-size: 1.1rem;
  color: var(--muted);
}

@media (max-width: 860px) {
  .hero-card {
    width: 100%;
    margin-top: 40px;
  }

  .hero-inner {
    max-width: 100%;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
