* {
  box-sizing: border-box;
}

:root {
  --ink: #1b1c20;
  --muted: #5a5e68;
  --accent: #3d5af1;
  --accent-soft: #eef1ff;
  --sand: #f7f4ef;
  --slate: #1f2430;
  --paper: #ffffff;
  --line: #e6e8ee;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  color: var(--accent);
  text-decoration: none;
}

header {
  padding: 28px 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.4px;
}

.nav-row {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  background: var(--accent-soft);
  padding: 6px 10px;
  border-radius: 999px;
}

.hero {
  padding: 30px 6% 80px;
}

.split {
  display: flex;
  align-items: stretch;
  gap: 36px;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.panel {
  flex: 1 1 320px;
  min-width: 280px;
}

.panel h1,
.panel h2,
.panel h3 {
  margin-top: 0;
}

.panel p {
  margin-bottom: 18px;
}

.media-box {
  border-radius: 20px;
  overflow: hidden;
  background: #dde1ea;
  min-height: 320px;
}

.hero .media-box {
  min-height: 380px;
}

.section {
  padding: 70px 6%;
}

.section.sand {
  background: var(--sand);
}

.section.slate {
  background: var(--slate);
  color: #f5f7ff;
}

.section.slate a {
  color: #c8d2ff;
}

.section.bg-visual {
  background-image: url("https://images.unsplash.com/photo-1451187580459-43490279c0fa?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #f8f9ff;
  position: relative;
}

.section.bg-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(16, 18, 27, 0.7);
}

.section.bg-visual .panel,
.section.bg-visual .card {
  position: relative;
  z-index: 1;
}

.card-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 240px;
  padding: 22px;
  border-radius: 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card.sand {
  background: #f3f0ea;
}

.card .media-box {
  min-height: 160px;
}

.badge {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted);
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.btn {
  background: var(--accent);
  color: white;
  border: none;
  padding: 12px 18px;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
}

.btn.secondary {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.btn.ghost {
  background: #ffffff;
  color: var(--ink);
  border: 1px solid var(--line);
}

.form-box {
  background: var(--paper);
  border-radius: 20px;
  padding: 26px;
  border: 1px solid var(--line);
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-field input,
.form-field select,
.form-field textarea {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid var(--line);
  font-size: 1rem;
  font-family: inherit;
}

.form-field textarea {
  min-height: 120px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.list-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.stat {
  font-weight: 700;
  font-size: 1.8rem;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: var(--paper);
  padding: 10px;
  border-radius: 16px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  display: flex;
  gap: 10px;
  align-items: center;
  z-index: 20;
}

.sticky-cta p {
  margin: 0;
  font-size: 0.9rem;
}

footer {
  padding: 50px 6%;
  background: #12141c;
  color: #d7dbe7;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.footer-col {
  flex: 1 1 220px;
}

.footer-col p {
  margin: 6px 0;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  max-width: 320px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.14);
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.notice {
  padding: 16px;
  border-radius: 14px;
  background: var(--accent-soft);
  color: var(--ink);
}

.image-strip {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.image-strip .media-box {
  flex: 1 1 220px;
  min-height: 200px;
}

.muted {
  color: var(--muted);
}

.divider {
  height: 1px;
  background: var(--line);
  margin: 24px 0;
}
