* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1b1d1f;
  background: #f6f7f9;
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 24px 80px;
}

.topbar {
  background: #0f172a;
  color: #f8fafc;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.ad-label {
  font-size: 0.85rem;
  padding: 6px 10px;
  border: 1px solid rgba(248, 250, 252, 0.4);
  border-radius: 999px;
  white-space: nowrap;
}

.split {
  display: flex;
  gap: 32px;
  align-items: center;
  margin: 48px 0;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-column {
  flex: 1;
  min-width: 0;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.75rem;
  color: #64748b;
}

.title {
  font-size: 2.4rem;
  margin: 12px 0 16px;
}

.subtitle {
  font-size: 1.1rem;
  color: #475569;
  margin-bottom: 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 8px;
  background: #2563eb;
  color: #ffffff;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.btn.secondary {
  background: #e2e8f0;
  color: #0f172a;
}

.btn.outline {
  background: transparent;
  border: 1px solid #0f172a;
  color: #0f172a;
}

.image-frame {
  background: #dbe2ea;
  border-radius: 18px;
  overflow: hidden;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.card {
  flex: 1 1 220px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.card .price {
  font-weight: 700;
  color: #0f172a;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #e0f2fe;
  color: #075985;
  font-size: 0.85rem;
}

.highlight {
  background: #0f172a;
  color: #f8fafc;
  padding: 48px 24px;
  border-radius: 18px;
  margin: 52px 0;
}

.highlight .btn {
  background: #f8fafc;
  color: #0f172a;
}

.bg-workshop {
  background-image: url("https://images.unsplash.com/photo-1717386255773-1e3037c81788?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-workshop .overlay {
  background: rgba(15, 23, 42, 0.7);
  color: #f8fafc;
  padding: 48px 24px;
  border-radius: 18px;
}

.form-block {
  background: #ffffff;
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.1);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #cbd5f5;
  font-size: 1rem;
  background: #f8fafc;
  color: #0f172a;
}

textarea {
  min-height: 120px;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 100;
}

.sticky-cta a {
  background: #0f172a;
  color: #f8fafc;
  padding: 12px 18px;
  border-radius: 999px;
  display: inline-flex;
  gap: 8px;
  font-weight: 600;
}

.footer {
  margin-top: 72px;
  padding-top: 32px;
  border-top: 1px solid #cbd5f5;
  font-size: 0.9rem;
  color: #475569;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  max-width: 360px;
  background: #ffffff;
  padding: 18px;
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.2);
  z-index: 120;
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.cookie-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: #0f172a;
}

.section-note {
  font-size: 0.9rem;
  color: #64748b;
}

@media (max-width: 900px) {
  .split,
  .split.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
