* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: #1d1f23;
  background-color: #f6f7f9;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 20px 80px;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 28px;
  background-color: #ffffff;
  border-bottom: 1px solid #e4e7ec;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.6px;
}

.nav {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
  font-size: 14px;
}

.nav a {
  padding: 6px 10px;
  border-radius: 16px;
  transition: background-color 0.2s ease;
}

.nav a:hover {
  background-color: #eef1f6;
}

.ad-label {
  background-color: #ffe9b5;
  color: #503a0b;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}

.split-section {
  display: flex;
  gap: 24px;
  align-items: stretch;
  margin: 40px 0;
  flex-wrap: wrap;
}

.split-section.reverse {
  flex-direction: row-reverse;
}

.split-content,
.split-visual {
  flex: 1 1 360px;
}

.split-content {
  background-color: #ffffff;
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(20, 35, 60, 0.08);
}

.split-visual {
  min-height: 320px;
  border-radius: 18px;
  overflow: hidden;
  background-color: #dfe6ef;
  position: relative;
}

.visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, rgba(20, 35, 60, 0.45), rgba(20, 35, 60, 0));
}

.split-visual .visual-caption {
  position: absolute;
  left: 24px;
  bottom: 24px;
  color: #ffffff;
  font-weight: 600;
  max-width: 70%;
}

.section-title {
  margin-top: 0;
  font-size: 28px;
  line-height: 1.2;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1.4px;
  color: #6b7280;
  margin-bottom: 10px;
}

.inline-link {
  color: #1f5b9e;
  font-weight: 600;
  border-bottom: 1px solid rgba(31, 91, 158, 0.4);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 12px;
  background-color: #1f5b9e;
  color: #ffffff;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn.light {
  background-color: #ffffff;
  color: #1f5b9e;
  border: 1px solid #cfd7e3;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(31, 91, 158, 0.24);
}

.card-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 220px;
  background-color: #ffffff;
  padding: 18px;
  border-radius: 16px;
  border: 1px solid #e6e9ef;
}

.card img {
  border-radius: 12px;
}

.price {
  font-size: 22px;
  font-weight: 700;
  margin-top: 10px;
  color: #143257;
}

.form-shell {
  background-color: #0f1f2e;
  color: #ffffff;
  padding: 28px;
  border-radius: 18px;
}

.form-shell form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.field-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.field {
  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field input,
.field select,
.field textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: none;
  background-color: #ffffff;
}

.service-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 14px;
  background-color: rgba(255, 255, 255, 0.12);
  border-radius: 12px;
}

.service-options label {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 40;
}

.sticky-cta .btn {
  background-color: #f97316;
  color: #ffffff;
}

.footer {
  margin-top: 60px;
  padding: 32px 20px;
  background-color: #ffffff;
  border-top: 1px solid #e6e9ef;
}

.footer-columns {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-column {
  flex: 1 1 220px;
}

.legal-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.muted {
  color: #6b7280;
}

.img-frame {
  background-color: #cfd7e3;
  border-radius: 16px;
  overflow: hidden;
}

.bg-panel {
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.bg-automation {
  background-image: url("https://images.unsplash.com/photo-1498050108023-c5249f4df085?w=1400&q=80");
}

.bg-analytics {
  background-image: url("https://images.unsplash.com/photo-1460925895917-afdab827c52f?w=1400&q=80");
}

.bg-workshop {
  background-image: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1400&q=80");
}

.bg-panel .split-content {
  background-color: rgba(15, 31, 46, 0.78);
  color: #ffffff;
  box-shadow: none;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background-color: #ffffff;
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 16px 30px rgba(20, 35, 60, 0.2);
  max-width: 360px;
  z-index: 50;
  display: none;
}

.cookie-banner.active {
  display: block;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.inline-note {
  background-color: #f1f5fb;
  padding: 12px 14px;
  border-radius: 12px;
  border-left: 4px solid #1f5b9e;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: 0;
  list-style: none;
}

.list li {
  padding-left: 18px;
  position: relative;
}

.list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #1f5b9e;
}

@media (max-width: 820px) {
  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
