* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1f2430;
  background: #f4f6f9;
}

a {
  color: inherit;
  text-decoration: none;
}

.site {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 260px;
  background: #111827;
  color: #f9fafb;
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.brand {
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.5px;
}

.ad-label {
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #fbbf24;
  color: #1f2937;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
}

.side-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.side-nav a {
  padding: 8px 10px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
}

.side-note {
  font-size: 13px;
  color: #d1d5db;
  line-height: 1.5;
}

.main {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 32px;
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
}

.top-links {
  display: flex;
  gap: 16px;
  font-size: 14px;
}

.section {
  padding: 64px 32px;
}

.section-alt {
  background: #ffffff;
}

.hero {
  background-size: cover;
  background-position: center;
  color: #f9fafb;
  padding: 96px 32px;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(17, 24, 39, 0.6);
}

.hero-content {
  position: relative;
  max-width: 680px;
}

.hero h1 {
  font-size: 42px;
  line-height: 1.1;
  margin: 0 0 18px;
}

.hero p {
  font-size: 18px;
  line-height: 1.7;
  margin: 0 0 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 12px;
  background: #f97316;
  color: #ffffff;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn-secondary {
  background: #111827;
}

.inline-link {
  text-decoration: underline;
  font-weight: 600;
}

.row {
  display: flex;
  gap: 28px;
  align-items: stretch;
  flex-wrap: wrap;
}

.card {
  background: #ffffff;
  border-radius: 18px;
  padding: 22px;
  flex: 1 1 260px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.overlap-card {
  margin-top: -32px;
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
}

.image-wrap {
  background: #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
}

.image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.split {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.split > div {
  flex: 1 1 320px;
}

.pricing-item {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid #e5e7eb;
}

.pricing-item:last-child {
  border-bottom: none;
}

.form-card {
  background: #111827;
  color: #f9fafb;
  border-radius: 20px;
  padding: 26px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 14px;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  font-size: 15px;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: #ffffff;
  padding: 12px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.2);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 20;
}

.footer {
  background: #0f172a;
  color: #e2e8f0;
  padding: 40px 32px;
  font-size: 14px;
  line-height: 1.7;
}

.footer .row {
  gap: 24px;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.2);
  padding: 16px 18px;
  max-width: 320px;
  display: none;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  flex: 1;
}

.bg-hero {
  background-image: url("https://images.unsplash.com/photo-1460925895917-afdab827c52f?w=1400&q=80");
}

.bg-process {
  background-image: url("https://images.unsplash.com/photo-1498050108023-c5249f4df085?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-insight {
  background-image: url("https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

@media (max-width: 960px) {
  .site {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
  }

  .topbar {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }

  .sticky-cta {
    left: 18px;
    right: 18px;
    justify-content: space-between;
  }
}
