* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: #1c1f26;
  background: #f7f5f2;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

.container {
  width: min(1150px, 92%);
  margin: 0 auto;
}

header {
  padding: 28px 0 10px;
}

.nav-split {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.02em;
}

.ad-label {
  font-size: 0.9rem;
  background: #ece5dc;
  padding: 6px 12px;
  border-radius: 999px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 18px;
  margin: 0;
  padding: 0;
}

nav a {
  font-size: 0.95rem;
}

.hero {
  padding: 40px 0 60px;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text-col {
  flex: 1 1 380px;
}

.split .media-col {
  flex: 1 1 380px;
  background: #e7e1d7;
  padding: 14px;
  border-radius: 18px;
}

.hero h1 {
  font-size: clamp(2.4rem, 3vw, 3.4rem);
  margin: 0 0 16px;
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: #1c1f26;
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn.secondary {
  background: #e2d7ca;
  color: #1c1f26;
}

.section {
  padding: 60px 0;
}

.section.alt {
  background: #f0ebe4;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 14px;
}

.pill {
  display: inline-block;
  padding: 4px 12px;
  background: #d9cdbc;
  border-radius: 999px;
  font-size: 0.85rem;
}

.case-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 22px;
}

.case-card {
  flex: 1 1 260px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 10px 30px rgba(15, 20, 26, 0.07);
}

.case-card .card-image {
  background: #e7e1d7;
  border-radius: 12px;
  overflow: hidden;
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 16px 18px;
  background: #fff;
  border-radius: 14px;
  gap: 8px;
}

.price {
  font-weight: 700;
}

.quote {
  background: #ffffff;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 8px 26px rgba(20, 24, 30, 0.08);
}

.form-wrap {
  background: #ffffff;
  padding: 24px;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(16, 20, 25, 0.08);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #d7d0c7;
  font-size: 1rem;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.inline-link {
  text-decoration: underline;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: #1c1f26;
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 50;
}

.sticky-cta a {
  color: #fff;
  font-weight: 600;
}

footer {
  padding: 40px 0 70px;
  background: #121417;
  color: #f3efe8;
}

footer a {
  color: #f3efe8;
  text-decoration: underline;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.small {
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  max-width: 360px;
  background: #ffffff;
  color: #1c1f26;
  padding: 16px;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(16, 20, 25, 0.12);
  z-index: 60;
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.page-hero {
  padding: 40px 0 50px;
}

.page-hero h1 {
  margin-bottom: 10px;
}

.info-block {
  background: #ffffff;
  padding: 22px;
  border-radius: 14px;
  margin-bottom: 16px;
}

.legal-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.contact-card {
  flex: 1 1 260px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
}

@media (max-width: 860px) {
  .sticky-cta {
    right: 12px;
    left: 12px;
    justify-content: space-between;
  }
}
