* {
  box-sizing: border-box;
}

:root {
  --ink: #1b1f2a;
  --muted: #5a667a;
  --soft: #f3f4f7;
  --accent: #1c6dd0;
  --accent-dark: #124a8a;
  --warm: #f8efe6;
  --paper: #ffffff;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #f6f7fb;
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

.layout {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 260px;
  padding: 28px 22px;
  background: var(--paper);
  border-right: 1px solid #e2e5ec;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.brand {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.ad-label {
  font-size: 0.85rem;
  color: #7a2330;
  background: #ffe7ea;
  padding: 8px 10px;
  border-radius: 8px;
}

.nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nav-list a {
  color: var(--ink);
  font-weight: 600;
}

.sidebar .note {
  font-size: 0.9rem;
  color: var(--muted);
  background: var(--soft);
  padding: 12px;
  border-radius: 10px;
}

.main {
  flex: 1;
  padding: 30px 40px 80px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero {
  display: flex;
  gap: 24px;
  padding: 32px;
  border-radius: 20px;
  color: #ffffff;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(14, 21, 35, 0.62);
}

.hero-content {
  position: relative;
  z-index: 2;
  flex: 1.1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hero .highlight {
  background: rgba(255, 255, 255, 0.18);
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 0.95rem;
}

.hero-image {
  position: relative;
  z-index: 2;
  flex: 0.9;
}

.section {
  background: var(--paper);
  padding: 26px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.section.split {
  flex-direction: row;
  gap: 24px;
  align-items: center;
}

.section.alt {
  background: var(--warm);
}

.section.dark {
  background: #101722;
  color: #f2f4f8;
}

.section.dark a {
  color: #a9d3ff;
}

.section .columns {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.col {
  flex: 1;
  min-width: 220px;
}

.cards {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.card {
  flex: 1;
  min-width: 220px;
  background: var(--paper);
  border-radius: 14px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: 1px solid #e3e6ee;
}

.card .price {
  font-weight: 700;
  color: var(--accent-dark);
}

.img-frame {
  background: #dfe5ee;
  border-radius: 14px;
  overflow: hidden;
}

.img-frame img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  background: var(--accent);
  color: #ffffff;
  border-radius: 10px;
  font-weight: 600;
  border: none;
}

.btn.secondary {
  background: #ffffff;
  color: var(--accent-dark);
  border: 1px solid #c8d7f0;
}

.btn.ghost {
  background: transparent;
  border: 1px solid #ffffff;
  color: #ffffff;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: #e8f0ff;
  color: var(--accent-dark);
  font-size: 0.85rem;
  font-weight: 600;
}

.form-shell {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.form-panel {
  flex: 1;
  min-width: 240px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-option {
  padding: 12px;
  background: #f0f3fa;
  border-radius: 10px;
  border: 1px solid #d9e0ef;
  font-weight: 600;
  color: var(--ink);
}

.form-panel form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #cfd6e5;
  font-size: 1rem;
}

input:disabled,
select:disabled,
textarea:disabled {
  background: #f2f2f2;
}

.form-status {
  font-size: 0.9rem;
  color: var(--muted);
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: var(--accent-dark);
  color: #ffffff;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  z-index: 10;
}

.footer {
  background: var(--paper);
  padding: 24px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.95rem;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  background: var(--paper);
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
  max-width: 320px;
  z-index: 11;
  display: none;
  flex-direction: column;
  gap: 10px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.hero-bg {
  background-image: url("https://images.unsplash.com/photo-1451187580459-43490279c0fa?w=1400&q=80");
}

.context-bg {
  background-image: url("https://images.unsplash.com/photo-1444653614773-995cb1ef9efa?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.tall {
  min-height: 220px;
}

@media (max-width: 980px) {
  .layout {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }

  .nav-list {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .section.split {
    flex-direction: column;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
