* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --bg: #f6f4f1;
  --surface: #ffffff;
  --ink: #1f2328;
  --muted: #5b6670;
  --accent: #2f6fed;
  --accent-dark: #1f4fb6;
  --soft: #e7ebf2;
  --warm: #efe7df;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-header {
  padding: 24px 6%;
}

.topbar {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  background: var(--surface);
  border-radius: 18px;
  padding: 16px 20px;
  box-shadow: 0 16px 30px rgba(31, 35, 40, 0.08);
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ad-label {
  font-size: 0.9rem;
  color: var(--muted);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.95rem;
}

.nav a {
  padding: 6px 10px;
  background: var(--soft);
  border-radius: 999px;
}

main {
  display: flex;
  flex-direction: column;
  gap: 64px;
  padding: 0 6% 80px;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.split .media {
  flex: 1 1 320px;
  min-height: 320px;
  border-radius: 22px;
  overflow: hidden;
  background: var(--warm);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  color: var(--muted);
}

h1, h2, h3 {
  line-height: 1.2;
}

h1 {
  font-size: clamp(2rem, 3vw, 3.2rem);
}

h2 {
  font-size: clamp(1.6rem, 2.4vw, 2.4rem);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn.secondary {
  background: var(--accent-dark);
}

.inline-link {
  color: var(--accent);
  font-weight: 600;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 220px;
  background: var(--surface);
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 12px 24px rgba(31, 35, 40, 0.06);
}

.card .media {
  height: 160px;
  border-radius: 14px;
  overflow: hidden;
  background: #e8edf5;
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--warm);
  color: var(--muted);
  font-size: 0.85rem;
  width: fit-content;
}

.pricing {
  font-weight: 700;
  font-size: 1.1rem;
}

.panel {
  background: var(--surface);
  border-radius: 22px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.panel.soft {
  background: var(--soft);
}

.sticky-cta {
  position: sticky;
  top: 24px;
  align-self: flex-start;
  max-width: 260px;
}

.form-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
}

.lead-form {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-weight: 600;
}

input, select, textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d1d7e0;
  font-size: 1rem;
  background: #fff;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.footer {
  padding: 40px 6% 80px;
  background: #10151b;
  color: #f5f7fa;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer .columns {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer .column {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer a {
  color: #f5f7fa;
}

.disclaimer {
  font-size: 0.85rem;
  color: #c7cdd6;
}

.cookie-banner {
  position: fixed;
  bottom: 24px;
  right: 24px;
  max-width: 320px;
  background: var(--surface);
  padding: 18px;
  border-radius: 18px;
  box-shadow: 0 16px 30px rgba(31, 35, 40, 0.12);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
  padding: 10px 12px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
}

.cookie-actions button.reject {
  background: #808a93;
}

.hero-note {
  display: flex;
  gap: 12px;
  align-items: center;
  background: var(--soft);
  border-radius: 14px;
  padding: 12px 16px;
}

.hero-note span {
  font-weight: 600;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.list li {
  list-style: none;
  padding-left: 18px;
  position: relative;
}

.list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent);
}

.contact-block {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.wide-image {
  height: 260px;
  border-radius: 22px;
  overflow: hidden;
  background: var(--warm);
}

.page-hero {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 32px;
  background: var(--surface);
  border-radius: 22px;
}

.legal-text {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: var(--surface);
  padding: 24px;
  border-radius: 20px;
}

.notice {
  background: #f0f4ff;
  padding: 16px;
  border-radius: 14px;
  color: var(--muted);
}

@media (max-width: 860px) {
  .sticky-cta {
    position: static;
  }

  .cookie-banner {
    left: 24px;
    right: 24px;
  }
}
