* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Arial", "Helvetica", sans-serif;
  color: #1b1b1b;
  background: #f7f5f2;
  line-height: 1.55;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  flex: 0 0 260px;
  background: #111827;
  color: #f8fafc;
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.brand {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.ad-label {
  font-size: 12px;
  line-height: 1.4;
  color: #d1d5db;
  background: rgba(255, 255, 255, 0.08);
  padding: 8px 10px;
  border-radius: 6px;
}

.nav-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
}

.nav-list a {
  padding: 8px 10px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.05);
}

.nav-list a:hover {
  background: rgba(255, 255, 255, 0.12);
}

.sidebar-note {
  font-size: 13px;
  color: #cbd5f5;
}

.content {
  flex: 1;
  padding: 40px 48px 80px;
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.section {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.section-row.reverse {
  flex-direction: row-reverse;
}

.section-card {
  flex: 1 1 280px;
  background: #ffffff;
  border-radius: 16px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.section-card img {
  border-radius: 12px;
}

.panel {
  flex: 1 1 320px;
  background: #ffffff;
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

.panel.dark {
  background: #0f172a;
  color: #f8fafc;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}

.hero-text {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-image {
  flex: 1 1 320px;
  background: #d8dee9;
  border-radius: 22px;
  overflow: hidden;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  background: #0f172a;
  color: #ffffff;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn.light {
  background: #e2e8f0;
  color: #0f172a;
}

.btn.ghost {
  background: transparent;
  border: 1px solid #0f172a;
  color: #0f172a;
}

.btn:hover {
  opacity: 0.85;
}

.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.price {
  font-size: 20px;
  font-weight: 700;
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.lead-form label {
  font-weight: 600;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  font-size: 15px;
}

.lead-form button {
  align-self: flex-start;
}

.inline-link {
  color: #0f172a;
  text-decoration: underline;
}

.sticky-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  left: 18px;
  right: 18px;
  background: #111827;
  color: #f8fafc;
  padding: 16px 18px;
  border-radius: 12px;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  background: #f8fafc;
  color: #111827;
  border: none;
  padding: 8px 14px;
  border-radius: 8px;
  cursor: pointer;
}

.footer {
  border-top: 1px solid #e2e8f0;
  padding-top: 24px;
  font-size: 13px;
  color: #475569;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.image-frame {
  background: #e2e8f0;
  border-radius: 14px;
  overflow: hidden;
}

.bg-panel {
  background: #eef2ff;
  border-radius: 20px;
  padding: 26px;
}

.bg-panel.alt {
  background: #fff7ed;
}

@media (max-width: 900px) {
  .page {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex: none;
  }

  .content {
    padding: 32px 22px 80px;
  }
}
