* {
  box-sizing: border-box;
}

:root {
  --ink: #1c1f24;
  --muted: #5c6570;
  --accent: #2f6bff;
  --accent-dark: #1b3f9b;
  --paper: #f7f7f5;
  --sand: #efe9e0;
  --mint: #e6f0f2;
  --plum: #2c2a35;
  --warm: #fff1e6;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.site-nav {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 24px 6vw 8px 6vw;
  background: #ffffff;
}

.nav-left,
.nav-right {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.brand {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 14px;
}

.ad-label {
  font-size: 12px;
  color: var(--muted);
  max-width: 240px;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  padding: 48px 6vw 64px 6vw;
  background: var(--paper);
  position: relative;
}

.hero-copy {
  flex: 1 1 360px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-title {
  font-size: 40px;
  line-height: 1.15;
  margin: 0;
}

.hero-highlight {
  font-weight: 600;
  background: var(--warm);
  padding: 6px 10px;
  display: inline-flex;
}

.hero-card {
  flex: 1 1 320px;
  background: #ffffff;
  padding: 22px;
  border-radius: 18px;
  box-shadow: 0 16px 30px rgba(34, 36, 42, 0.12);
  align-self: flex-start;
}

.hero-card .img-wrap {
  border-radius: 14px;
}

.img-wrap {
  background: #e3e7ea;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.img-wrap img {
  width: 100%;
  height: 100%;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  background: var(--accent);
  color: #ffffff;
  border-radius: 999px;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.button.secondary {
  background: #ffffff;
  color: var(--accent-dark);
  border: 1px solid var(--accent-dark);
}

.button:focus {
  outline: 2px solid var(--accent-dark);
  outline-offset: 2px;
}

.inline-link {
  color: var(--accent-dark);
  font-weight: 600;
}

.section {
  padding: 54px 6vw;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
}

.section.muted {
  background: var(--sand);
}

.section.mint {
  background: var(--mint);
}

.section.plum {
  background: var(--plum);
  color: #fef9f5;
}

.section.bg-market {
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.section.bg-market::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 12, 18, 0.55);
}

.section.bg-market > * {
  position: relative;
  z-index: 1;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .col {
  flex: 1 1 300px;
}

.floating-note {
  background: #ffffff;
  padding: 20px;
  border-radius: 18px;
  box-shadow: 0 10px 20px rgba(20, 20, 20, 0.1);
  max-width: 360px;
  align-self: flex-end;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 220px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 10px 22px rgba(34, 36, 42, 0.08);
}

.card-title {
  font-weight: 600;
  font-size: 18px;
  margin: 0;
}

.price {
  font-weight: 700;
  font-size: 20px;
  color: var(--accent-dark);
}

.offset-block {
  margin-left: 8vw;
  margin-top: -40px;
  background: #ffffff;
  padding: 22px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(31, 36, 45, 0.15);
  max-width: 520px;
}

.stacked {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-shell {
  background: #ffffff;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 20px 34px rgba(31, 36, 45, 0.16);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #ccd3da;
  font-size: 15px;
  font-family: inherit;
}

.footer {
  padding: 36px 6vw;
  background: #101217;
  color: #d2d6dc;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.footer small {
  color: #a9b0bb;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 40;
}

.sticky-cta .button {
  box-shadow: 0 16px 24px rgba(30, 35, 52, 0.2);
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 18px 28px rgba(23, 26, 31, 0.2);
  max-width: 320px;
  z-index: 50;
  display: none;
  gap: 12px;
  flex-direction: column;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.text-muted {
  color: var(--muted);
}

.content-wrap {
  max-width: 980px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.note {
  background: var(--warm);
  padding: 16px;
  border-radius: 14px;
}

.banner-image {
  min-height: 240px;
  border-radius: 18px;
  overflow: hidden;
}

.banner-image img {
  width: 100%;
  height: 240px;
}

@media (max-width: 800px) {
  .offset-block {
    margin-left: 0;
    margin-top: 0;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }

  .hero-title {
    font-size: 32px;
  }
}
