* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1a1a1a;
  background: #f7f4f1;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 24px;
  background: #111;
  color: #fff;
}

.brand {
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 14px;
}

.ad-label {
  font-size: 12px;
  opacity: 0.8;
}

.nav-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
}

.nav-links a {
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
}

.hero {
  padding: 56px 0;
}

.split {
  display: flex;
  gap: 32px;
  align-items: stretch;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1 1 420px;
}

.panel {
  background: #fff;
  padding: 32px;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.panel.dark {
  background: #151515;
  color: #f5f2ed;
}

.panel h2,
.panel h3 {
  margin-top: 0;
}

.cta-button,
.inline-cta,
.sticky-cta {
  background: #2a2d3e;
  color: #fff;
  border: none;
  padding: 12px 20px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 14px;
  letter-spacing: 0.02em;
}

.inline-cta {
  background: transparent;
  color: #2a2d3e;
  border: 1px solid #2a2d3e;
}

.cta-link {
  color: #2a2d3e;
  text-decoration: underline;
}

.image-card {
  border-radius: 24px;
  overflow: hidden;
  background: #e5e1da;
}

.image-card img {
  height: 100%;
}

.service-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card {
  display: flex;
  gap: 16px;
  background: #fff;
  padding: 18px;
  border-radius: 18px;
  align-items: center;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

.service-card img {
  width: 120px;
  height: 90px;
  border-radius: 12px;
}

.price {
  font-weight: 600;
  color: #2a2d3e;
}

.section {
  padding: 48px 0;
}

.section.alt {
  background: #ece7e1;
}

.quote {
  font-style: italic;
  font-size: 18px;
}

.form-box {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-box label {
  font-size: 14px;
  font-weight: 600;
}

.form-box input,
.form-box select,
.form-box textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #d4d0c7;
  font-size: 14px;
  font-family: inherit;
}

.form-box button {
  align-self: flex-start;
}

.footer {
  background: #111;
  color: #f7f4f1;
  padding: 32px 24px;
}

.footer .footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
}

.footer small {
  display: block;
  margin-top: 16px;
  opacity: 0.7;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: #fff;
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.2);
  display: none;
  z-index: 10;
}

.cookie-banner.active {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 9;
}

.page-title {
  margin: 0 0 12px;
  font-size: 32px;
}

.subtle {
  color: #505050;
}

.legal-list {
  padding-left: 20px;
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.info-tag {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: #ece7e1;
  font-size: 12px;
}

@media (max-width: 760px) {
  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    position: static;
    margin: 16px 24px;
  }
}
