* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1c2230;
  --muted: #5b667a;
  --accent: #2f6fed;
  --accent-2: #1f9d7a;
  --soft: #f4f6fb;
  --sand: #f9f2e8;
  --slate: #edf0f6;
  --border: #d9dfea;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 6vw;
  gap: 24px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.4px;
  font-size: 1.2rem;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: flex-end;
}

.nav a {
  font-size: 0.95rem;
  color: var(--muted);
}

.ad-label {
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--sand);
  color: #7a4f16;
  font-size: 0.8rem;
  font-weight: 600;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  min-height: 70vh;
  padding: 36px 6vw 64px;
  gap: 32px;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  padding: 56px 6vw;
  align-items: stretch;
}

.split--reverse {
  flex-direction: row-reverse;
}

.split__text,
.split__media {
  flex: 1 1 320px;
  min-width: 280px;
}

.split__text {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
}

.split__media {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--slate);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.split__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__panel {
  flex: 1 1 320px;
  min-width: 280px;
}

.hero__panel h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1;
}

.hero__panel p {
  color: var(--muted);
  max-width: 520px;
}

.hero__media {
  background: var(--slate);
  border-radius: 24px;
  overflow: hidden;
  min-height: 360px;
  display: flex;
  align-items: stretch;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 10px;
}

.button {
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  border: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.button--ghost {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.button--secondary {
  background: var(--accent-2);
}

.inline-link {
  color: var(--accent);
  font-weight: 600;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 8px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  flex: 1 1 260px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: #fff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card__media {
  height: 180px;
  background: var(--slate);
}

.card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card__body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.strip {
  background: var(--soft);
}

.panel {
  padding: 28px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.panel--sand {
  background: var(--sand);
  border: none;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form label {
  font-weight: 600;
}

.form input,
.form select,
.form textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--border);
  font-size: 1rem;
}

.form .button {
  align-self: flex-start;
}

.footer {
  margin-top: auto;
  padding: 40px 6vw;
  background: #151924;
  color: #fff;
}

.footer .meta {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  color: #cbd3e6;
  font-size: 0.9rem;
}

.footer a {
  color: #cbd3e6;
}

.footer .disclaimer {
  margin-top: 18px;
  color: #b6c1db;
  font-size: 0.85rem;
  max-width: 820px;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 8;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--accent-2);
  color: #fff;
  font-weight: 600;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.16);
}

.cookie-banner {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 16px;
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid var(--border);
  padding: 18px 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  z-index: 10;
  max-width: 680px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.cookie-banner p {
  flex: 1 1 260px;
  color: var(--muted);
  font-size: 0.92rem;
}

.cookie-banner .button {
  padding: 10px 16px;
}

.status-note {
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--slate);
  color: var(--muted);
  font-size: 0.9rem;
}

.two-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.two-panel > div {
  flex: 1 1 240px;
}

.image-tile {
  border-radius: 18px;
  overflow: hidden;
  background: var(--slate);
}

.image-tile img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.banner-bg {
  background: linear-gradient(120deg, rgba(237, 240, 246, 0.9), rgba(249, 242, 232, 0.9));
}

.bg-docflow {
  background-color: #e7ecf7;
  background-image: url("https://images.unsplash.com/photo-1499951360447-b19be8fe80f5?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.bg-docflow .split__text {
  background: rgba(255, 255, 255, 0.88);
  padding: 24px;
  border-radius: 18px;
}

.legal {
  padding: 56px 6vw;
}

.legal h1 {
  margin-bottom: 16px;
}

.legal p {
  margin-bottom: 14px;
  color: var(--muted);
}

@media (max-width: 860px) {
  .header {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
