* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: #1f1f1f;
  background: #f6f4f1;
}

a {
  color: #1b4b73;
  text-decoration: none;
}

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

header {
  padding: 22px 0;
  background: #f0ede8;
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: lowercase;
}

.nav-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 14px;
}

.ad-label {
  font-size: 12px;
  color: #6b4a2b;
  background: #fce9d4;
  padding: 6px 10px;
  border-radius: 14px;
}

.split {
  display: flex;
  gap: 28px;
  align-items: center;
  padding: 56px 0;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text {
  flex: 1;
}

.split .media {
  flex: 1;
}

.section-accent {
  background: #fff;
}

.section-contrast {
  background: #efe3d6;
}

.img-frame {
  background: #d9cdbf;
  padding: 10px;
  border-radius: 18px;
}

.img-cover {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  display: block;
}

.hero-title {
  font-size: 42px;
  margin-bottom: 12px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  color: #6b4a2b;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  background: #1b4b73;
  color: #fff;
  border-radius: 20px;
  border: none;
  font-size: 14px;
  cursor: pointer;
}

.button.secondary {
  background: #6b4a2b;
}

.inline-cta {
  font-weight: 600;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card {
  background: #f9f7f4;
  padding: 16px;
  border-radius: 16px;
  display: flex;
  gap: 16px;
  align-items: center;
}

.service-card .img-frame {
  flex: 0 0 150px;
}

.price-tag {
  font-weight: 700;
  color: #1b4b73;
}

.form-panel {
  background: #f9f7f4;
  padding: 24px;
  border-radius: 18px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-size: 14px;
  font-weight: 600;
}

select,
input,
textarea {
  padding: 10px;
  border-radius: 10px;
  border: 1px solid #c9c1b7;
  font-size: 14px;
}

.sticky-cta {
  position: fixed;
  right: 16px;
  bottom: 18px;
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  bottom: 18px;
  background: #ffffff;
  padding: 16px;
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  max-width: 320px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.footer {
  background: #1f1f1f;
  color: #f4f1ed;
  padding: 36px 0;
  font-size: 13px;
}

.footer a {
  color: #f4f1ed;
}

.footer-columns {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-column {
  flex: 1 1 200px;
}

.legal-note {
  font-size: 12px;
  color: #c8c1b7;
}

.two-column {
  display: flex;
  gap: 24px;
}

.two-column .panel {
  flex: 1;
  background: #f9f7f4;
  padding: 20px;
  border-radius: 16px;
}

.split-note {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.split-note .panel {
  flex: 1;
}

.overlay-panel {
  background: rgba(255, 255, 255, 0.92);
  padding: 24px;
  border-radius: 18px;
}

.section-panel {
  background: #ffffff;
  padding: 22px;
  border-radius: 18px;
}

.bg-vision {
  background: #e9dfd1;
  background-image: url("https://images.unsplash.com/photo-1449844908441-8829872d2607?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-workflow {
  background: #efe3d6;
  background-image: url("https://images.unsplash.com/photo-1441974231531-c6227db76b6e?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

@media (max-width: 900px) {
  .split {
    flex-direction: column;
  }

  .split.reverse {
    flex-direction: column;
  }

  .nav-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .two-column {
    flex-direction: column;
  }
}
