* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #0f172a;
  background: #f8fafc;
}

a {
  color: inherit;
  text-decoration: none;
}

.layout {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 260px;
  background: #0b172a;
  color: #e2e8f0;
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.brand {
  font-size: 22px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.ad-label {
  font-size: 12px;
  line-height: 1.4;
  background: #1e293b;
  padding: 10px 12px;
  border-radius: 8px;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
}

.nav a {
  padding: 8px 10px;
  border-radius: 6px;
  background: rgba(148, 163, 184, 0.08);
}

.sidebar-note {
  padding: 14px;
  border-radius: 12px;
  background: #111f35;
  font-size: 13px;
  line-height: 1.5;
}

.sidebar-note a {
  display: inline-flex;
  margin-top: 10px;
  padding: 8px 12px;
  border-radius: 20px;
  background: #38bdf8;
  color: #0b172a;
  font-weight: 600;
}

.content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 48px 60px 60px;
  background: #e2e8f0;
  position: relative;
}

.hero .hero-media {
  width: 100%;
  height: 320px;
  border-radius: 28px;
  overflow: hidden;
}

.hero .hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero h1 {
  font-size: 36px;
  margin: 0;
  max-width: 720px;
}

.hero p {
  max-width: 680px;
  font-size: 16px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 26px;
  background: #0f172a;
  color: #f8fafc;
  font-weight: 600;
  font-size: 14px;
}

.button.secondary {
  background: #e2e8f0;
  color: #0f172a;
  border: 1px solid #0f172a;
}

.section {
  padding: 50px 60px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: #f8fafc;
}

.section.alt {
  background: #f1f5f9;
}

.section.dark {
  background: #0f172a;
  color: #f8fafc;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.split .column {
  flex: 1 1 260px;
}

.image-box {
  border-radius: 18px;
  overflow: hidden;
}

.image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 220px;
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.card img {
  width: 100%;
  height: 150px;
  border-radius: 14px;
  object-fit: cover;
  background: #dbeafe;
}

.bg-sky {
  background: #cbd5f5;
}

.bg-soft-blue {
  background: #dbeafe;
}

.bg-midnight {
  background: #1f2937;
}

.section-background {
  position: relative;
  height: 260px;
  display: flex;
  align-items: flex-end;
}

.section-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-background .overlay {
  position: absolute;
  left: 24px;
  bottom: 24px;
  background: rgba(15, 23, 42, 0.72);
  color: #f8fafc;
  padding: 12px 16px;
  border-radius: 14px;
  font-size: 14px;
}

.price {
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
}

.quote {
  padding: 22px;
  border-left: 4px solid #38bdf8;
  background: #e0f2fe;
  border-radius: 12px;
  font-size: 15px;
  line-height: 1.6;
}

.sticky-cta {
  position: sticky;
  top: 24px;
  align-self: flex-start;
  padding: 20px;
  background: #fff7ed;
  border-radius: 18px;
  border: 1px solid #fdba74;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 520px;
}

.form-wrap label {
  font-size: 14px;
  font-weight: 600;
}

.form-wrap input,
.form-wrap select,
.form-wrap textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #cbd5f5;
  font-size: 14px;
  background: #ffffff;
}

.form-wrap button {
  padding: 12px 16px;
  border-radius: 24px;
  border: none;
  background: #0f172a;
  color: #f8fafc;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
}

.footer {
  padding: 30px 60px 60px;
  background: #0b172a;
  color: #cbd5f5;
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-size: 13px;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-links a {
  color: #cbd5f5;
  padding: 6px 10px;
  border-radius: 16px;
  background: rgba(148, 163, 184, 0.12);
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  right: 18px;
  max-width: 320px;
  background: #ffffff;
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.2);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
}

.cookie-banner button {
  border: none;
  border-radius: 18px;
  padding: 10px 14px;
  font-weight: 600;
  cursor: pointer;
}

.cookie-accept {
  background: #22c55e;
  color: #0b172a;
}

.cookie-reject {
  background: #e2e8f0;
  color: #0f172a;
}

.notice {
  font-size: 14px;
  background: #fef3c7;
  padding: 18px;
  border-radius: 16px;
  border: 1px solid #fde68a;
}

@media (max-width: 980px) {
  .layout {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
  }

  .nav {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .hero,
  .section,
  .footer {
    padding: 36px 24px;
  }
}
