* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1f2933;
  background: #f7f7f5;
}

a {
  color: inherit;
  text-decoration: none;
}

.layout {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  flex: 0 0 260px;
  background: #111827;
  color: #f9fafb;
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.brand {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ad-label {
  font-size: 13px;
  line-height: 1.4;
  color: #cbd5f5;
  background: rgba(148, 163, 184, 0.18);
  padding: 10px 12px;
  border-radius: 10px;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 15px;
}

.nav a {
  padding: 8px 10px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
}

.nav a:hover {
  background: rgba(255, 255, 255, 0.14);
}

.sidebar-footer {
  margin-top: auto;
  font-size: 12px;
  color: #94a3b8;
  line-height: 1.5;
}

.content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 32px 36px 120px;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 42px;
  border-radius: 24px;
  color: #f8fafc;
  background: linear-gradient(120deg, rgba(15, 23, 42, 0.72), rgba(15, 23, 42, 0.4)),
    url("https://images.unsplash.com/photo-1487058792275-0ad4aaf24ca7?w=1400&q=80") center/cover no-repeat;
}

.hero.hero-services {
  background: linear-gradient(120deg, rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.3)),
    url("https://images.unsplash.com/photo-1516251193007-45ef944ab0c6?w=1400&q=80") center/cover no-repeat;
}

.hero h1 {
  font-size: 36px;
  margin: 0;
}

.hero p {
  font-size: 18px;
  max-width: 640px;
  margin: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  background: #f97316;
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn.secondary {
  background: #0f172a;
  color: #f8fafc;
}

.section {
  background: #fff;
  border-radius: 22px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.section.split {
  flex-direction: row;
  gap: 24px;
  align-items: center;
}

.section.alt {
  background: #eef2ff;
}

.section.dark {
  background: #0f172a;
  color: #f8fafc;
}

.section.bg-panel {
  color: #f8fafc;
  background: linear-gradient(120deg, rgba(2, 6, 23, 0.78), rgba(2, 6, 23, 0.35)),
    url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80") center/cover no-repeat;
}

.section h2,
.section h3 {
  margin: 0;
}

.section p {
  margin: 0;
  line-height: 1.7;
}

.image-frame {
  flex: 1;
  min-height: 240px;
  border-radius: 18px;
  overflow: hidden;
  background-color: #dbe4ff;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 260px;
  background: #f8fafc;
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid #e2e8f0;
}

.card .price {
  font-weight: 700;
  color: #0f172a;
}

.inline-cta {
  color: #2563eb;
  font-weight: 600;
}

.quote-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.quote {
  padding: 16px;
  border-left: 4px solid #f97316;
  background: #fff7ed;
  border-radius: 12px;
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-grid label {
  font-size: 14px;
  font-weight: 600;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #cbd5f5;
  font-size: 14px;
}

.form-grid textarea {
  min-height: 120px;
  resize: vertical;
}

.form-disabled {
  opacity: 0.6;
  pointer-events: none;
}

.service-selector {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.service-option {
  flex: 1 1 160px;
  background: #f1f5f9;
  padding: 10px 12px;
  border-radius: 12px;
}

.two-col {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.pill {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.08);
  font-size: 13px;
  font-weight: 600;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 24px;
  background: #111827;
  color: #f8fafc;
  padding: 14px 18px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.25);
}

.sticky-cta a {
  background: #f97316;
  color: #fff;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 600;
}

.footer {
  font-size: 13px;
  color: #475569;
  line-height: 1.7;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #0f172a;
  color: #f8fafc;
  padding: 18px 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  z-index: 10;
}

.cookie-banner button {
  background: #f97316;
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 8px 14px;
  cursor: pointer;
}

.cookie-banner .reject {
  background: #475569;
}

@media (max-width: 980px) {
  .layout {
    flex-direction: column;
  }

  .sidebar {
    flex: 0 0 auto;
  }

  .section.split {
    flex-direction: column;
  }

  .sticky-cta {
    right: 12px;
    left: 12px;
    justify-content: space-between;
  }
}
