* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1b1b1b;
  background: #f7f6f2;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

header {
  background: #ffffff;
  border-bottom: 1px solid #e6e2d7;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 6vw;
  gap: 20px;
}

.nav-left {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 14px;
}

.ad-label {
  font-size: 12px;
  color: #5a5a5a;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
}

.hero {
  display: flex;
  gap: 40px;
  padding: 60px 6vw 20px;
  align-items: stretch;
  flex-wrap: wrap;
}

.hero-content,
.hero-media {
  flex: 1 1 320px;
}

.hero-content h1 {
  font-size: 40px;
  margin: 0 0 16px;
}

.hero-content p {
  max-width: 560px;
  margin: 0 0 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  background: #1b1b1b;
  color: #ffffff;
  border-radius: 999px;
  font-size: 14px;
  border: none;
  cursor: pointer;
}

.btn-secondary {
  background: #ffffff;
  color: #1b1b1b;
  border: 1px solid #1b1b1b;
}

.section {
  padding: 60px 6vw;
}

.section-muted {
  background: #f0efe9;
}

.bg-panel {
  color: #ffffff;
  background-color: #3d4852;
  background-size: cover;
  background-position: center;
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
}

.bg-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(27, 27, 27, 0.55);
}

.bg-panel .bg-content {
  max-width: 520px;
  position: relative;
}

.bg-interview {
  background-image: url("https://images.unsplash.com/photo-1519389950473-47ba0277781c?w=1400&q=80");
}

.split {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1 1 320px;
}

.media-box {
  background: #e1ddd1;
  padding: 12px;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  background: #ffffff;
  border: 1px solid #e2dfd4;
  padding: 20px;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card h3 {
  margin: 0;
}

.inline-cta {
  font-weight: 600;
  text-decoration: underline;
}

.form-wrap {
  background: #ffffff;
  border: 1px solid #e2dfd4;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

input,
select,
textarea {
  padding: 10px 12px;
  border: 1px solid #c9c4b6;
  border-radius: 6px;
  font-size: 14px;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #27485f;
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 13px;
}

footer {
  background: #ffffff;
  border-top: 1px solid #e6e2d7;
  padding: 40px 6vw;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
}

.disclaimer {
  font-size: 12px;
  color: #5a5a5a;
  margin-top: 16px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #ffffff;
  border: 1px solid #ded9cc;
  padding: 16px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-image {
  width: 100%;
  height: auto;
}

.reference-list a {
  text-decoration: underline;
  font-size: 13px;
}

.page-title {
  font-size: 32px;
  margin: 0 0 16px;
}

.detail-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

@media (max-width: 720px) {
  .hero-content h1 {
    font-size: 32px;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
