* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1e1f24;
  background-color: #f7f6f3;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  object-fit: cover;
}

.layout {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 280px;
  background-color: #111827;
  color: #f9fafb;
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.brand {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.6px;
}

.ad-label {
  display: block;
  font-size: 12px;
  color: #cbd5f5;
  margin-bottom: 10px;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.nav a {
  padding: 8px 10px;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.04);
}

.nav a:hover,
.button:hover,
.link:hover {
  background-color: rgba(255, 255, 255, 0.14);
}

.sidebar-cta {
  margin-top: auto;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  background-color: #f2b705;
  color: #111827;
  font-weight: 600;
  border: none;
  cursor: pointer;
  gap: 8px;
}

.button.secondary {
  background-color: transparent;
  color: #f9fafb;
  border: 1px solid #f9fafb;
}

.content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero {
  display: flex;
  min-height: 360px;
  color: #f9fafb;
  padding: 60px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero-home {
  background-image: url("https://images.unsplash.com/photo-1520607162513-77705c0f0d4a?w=1400&q=80");
}

.section-bg {
  background-image: url("https://images.unsplash.com/photo-1474631245212-32dc3c8310c6?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #f9fafb;
  position: relative;
}

.section-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.75);
}

.section-bg .section-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(17, 24, 39, 0.85) 0%, rgba(17, 24, 39, 0.3) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 540px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.section {
  padding: 36px 60px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.section.alt {
  background-color: #ffffff;
}

.split {
  display: flex;
  gap: 30px;
  align-items: stretch;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.image-wrap {
  background-color: #e5e7eb;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
}

.image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.card {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1 1 220px;
  min-width: 220px;
  box-shadow: 0 14px 30px rgba(17, 24, 39, 0.08);
}

.card img {
  border-radius: 12px;
}

.badge {
  background-color: #111827;
  color: #f9fafb;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  display: inline-block;
}

.pricing {
  font-weight: 700;
  font-size: 18px;
}

.steps {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.step {
  flex: 1 1 210px;
  background-color: #111827;
  color: #f9fafb;
  padding: 18px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form label {
  font-weight: 600;
}

.form input,
.form select,
.form textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #d1d5db;
  font-size: 15px;
}

.form-status {
  font-size: 14px;
  color: #b91c1c;
  min-height: 20px;
}

.footer {
  padding: 30px 60px 60px;
  background-color: #0f172a;
  color: #e2e8f0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-links a {
  color: #e2e8f0;
  border-bottom: 1px solid rgba(226, 232, 240, 0.4);
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 10;
}

.sticky-cta .button {
  background-color: #111827;
  color: #f9fafb;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background-color: #ffffff;
  color: #111827;
  border-radius: 16px;
  padding: 18px;
  display: none;
  gap: 14px;
  align-items: center;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.2);
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions .button {
  background-color: #111827;
  color: #f9fafb;
}

.cookie-actions .button.secondary {
  background-color: transparent;
  color: #111827;
  border: 1px solid #111827;
}

.link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
}

.page-hero {
  display: flex;
  padding: 40px 60px;
  background-color: #ffffff;
  align-items: center;
  gap: 30px;
}

.page-hero h1 {
  font-size: 32px;
}

.legal {
  padding: 36px 60px 60px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

@media (max-width: 1020px) {
  .layout {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .sidebar-cta {
    width: 100%;
  }

  .content {
    gap: 18px;
  }

  .hero,
  .section,
  .footer,
  .page-hero,
  .legal {
    padding: 28px 24px;
  }

  .split {
    flex-direction: column;
  }
}
