* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1c1c1c;
  --muted: #5f6468;
  --sand: #f4f0ea;
  --mist: #e7ecef;
  --stone: #d2d7db;
  --accent: #0f4c81;
  --accent-soft: #e1ecf6;
  --warm: #f7efe2;
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:focus,
button:focus,
select:focus,
input:focus,
textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 6vw;
  gap: 24px;
  border-bottom: 1px solid var(--stone);
  background: #ffffff;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand strong {
  font-size: 1.4rem;
  letter-spacing: 0.04em;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
}

.nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav a {
  font-size: 0.95rem;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  padding: 60px 6vw;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1 1 320px;
  min-width: 0;
}

.section-title {
  font-size: 2.1rem;
  margin-bottom: 18px;
  line-height: 1.2;
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 18px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.btn {
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #ffffff;
  cursor: pointer;
  font-size: 0.95rem;
}

.btn.secondary {
  background: #ffffff;
  color: var(--accent);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: 999px;
  font-size: 0.85rem;
}

.panel {
  background: var(--sand);
  padding: 30px;
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.panel.mist {
  background: var(--mist);
}

.panel.warm {
  background: var(--warm);
}

.image-shell {
  background: var(--stone);
  border-radius: 24px;
  overflow: hidden;
  min-height: 260px;
}

.image-shell.small {
  min-height: 180px;
}

.image-shell.one {
  background: #dfe4e7;
}

.image-shell.two {
  background: #ebe4dc;
}

.image-shell.three {
  background: #e2e8f0;
}

.image-shell.four {
  background: #dcd6cf;
}

.image-shell.five {
  background: #e8e6df;
}

.image-shell.six {
  background: #d9e0e4;
}

.image-shell.seven {
  background: #e6e3da;
}

.image-shell.eight {
  background: #d8dde1;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.service-card {
  flex: 1 1 240px;
  background: #ffffff;
  border: 1px solid var(--stone);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.service-card .content {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 600;
  color: var(--accent);
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
}

.list li {
  list-style: none;
  padding-left: 18px;
  position: relative;
  color: var(--muted);
}

.list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent);
}

.quote {
  font-style: italic;
  color: var(--muted);
}

.form-wrap {
  background: #ffffff;
  border-radius: 24px;
  padding: 28px;
  border: 1px solid var(--stone);
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.lead-form label {
  font-size: 0.9rem;
  color: var(--muted);
}

.lead-form select,
.lead-form input,
.lead-form textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--stone);
  border-radius: 8px;
  font-size: 0.95rem;
}

.lead-form button {
  align-self: flex-start;
}

.footer {
  margin-top: auto;
  padding: 40px 6vw;
  background: #111418;
  color: #f7f7f7;
}

.footer a {
  color: #f7f7f7;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.footer small {
  color: #c9c9c9;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  background: #ffffff;
  border: 1px solid var(--stone);
  border-radius: 18px;
  padding: 18px;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: var(--shadow);
  z-index: 10;
}

.cookie-banner p {
  color: var(--muted);
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.sticky-cta {
  position: fixed;
  right: 22px;
  bottom: 100px;
  background: var(--accent);
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  font-size: 0.9rem;
}

.legal-block {
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.9rem;
}

.divider {
  height: 1px;
  background: var(--stone);
  margin: 24px 0;
}

.meta-pill {
  display: inline-flex;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--stone);
  font-size: 0.85rem;
  color: var(--muted);
}

.hero-title {
  font-size: 2.6rem;
  line-height: 1.1;
  margin-bottom: 16px;
}

@media (max-width: 900px) {
  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    right: 12px;
    bottom: 16px;
  }
}
