* {
  box-sizing: border-box;
}

:root {
  --ink: #1d1f24;
  --muted: #5c6370;
  --accent: #1f6feb;
  --accent-dark: #124b9e;
  --bg: #f6f4f1;
  --card: #ffffff;
  --line: #e6e1da;
  --highlight: #f0efe9;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.top-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px 6vw 10px;
}

.nav-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.85rem;
  background: var(--highlight);
  padding: 6px 10px;
  border-radius: 999px;
}

.section {
  padding: 56px 6vw;
}

.section-tight {
  padding: 32px 6vw;
}

.wrap {
  max-width: 1120px;
  margin: 0 auto;
}

.hero {
  background-color: #2a2d33;
  background-image: url("https://images.unsplash.com/photo-1483985988355-763728e1935b?w=1400&q=80");
  background-size: cover;
  background-position: center;
  position: relative;
  color: #fff;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(18, 23, 32, 0.55);
}

.hero-content {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 560px;
}

.eyebrow {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
}

.btn.secondary {
  background: #fff;
  color: var(--accent-dark);
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.col {
  flex: 1 1 260px;
}

.image-frame {
  background: #e8e1d6;
  padding: 8px;
  border-radius: 18px;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.layered {
  background-color: #232526;
  background-image: url("https://images.unsplash.com/photo-1503341455253-b2e723bb3dbb?w=1400&q=80");
  background-size: cover;
  background-position: center;
  position: relative;
  color: #fff;
}

.layered::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(16, 18, 19, 0.6);
}

.layered .wrap {
  position: relative;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 240px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card-image {
  background: #e7dfd1;
  border-radius: 14px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--highlight);
  font-size: 0.85rem;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.step-number {
  min-width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.form-section {
  background: var(--card);
  border-radius: 24px;
  padding: 28px;
  border: 1px solid var(--line);
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  font-size: 1rem;
}

.inline-cta {
  font-weight: 600;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: var(--accent-dark);
  color: #fff;
  padding: 12px 16px;
  border-radius: 999px;
  display: flex;
  gap: 10px;
  align-items: center;
  z-index: 20;
}

.sticky-cta a {
  color: #fff;
  font-weight: 600;
}

footer {
  margin-top: auto;
  padding: 32px 6vw;
  background: #14161a;
  color: #eaecef;
}

footer a {
  color: #eaecef;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  max-width: 320px;
  display: none;
  flex-direction: column;
  gap: 10px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions button {
  border: none;
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 600;
  cursor: pointer;
}

.cookie-accept {
  background: var(--accent);
  color: #fff;
}

.cookie-reject {
  background: var(--line);
  color: var(--ink);
}

.notice {
  background: var(--highlight);
  border-radius: 14px;
  padding: 16px;
}

.simple-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.columns {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.column-block {
  flex: 1 1 220px;
  background: var(--highlight);
  border-radius: 14px;
  padding: 16px;
}

.section-title {
  margin: 0 0 10px;
}

.divider {
  height: 1px;
  background: var(--line);
  margin: 26px 0;
}

.wide-callout {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: var(--card);
  border-radius: 24px;
  padding: 28px;
  border: 1px solid var(--line);
}

.text-center {
  text-align: center;
}

@media (max-width: 768px) {
  .sticky-cta {
    left: 18px;
    right: 18px;
    justify-content: center;
  }
}
