* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: #1b1d21;
  background: #f6f4f1;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.topbar {
  background: #ffffff;
  border-bottom: 1px solid #e3dfd9;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  gap: 20px;
}

.brand {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: lowercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 14px;
}

.ad-label {
  font-size: 12px;
  color: #5b5146;
  background: #f0ede7;
  padding: 6px 10px;
  border-radius: 999px;
}

.hero {
  padding: 60px 0 30px;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: stretch;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > .split-text,
.split > .split-media {
  flex: 1 1 320px;
}

.headline {
  font-size: clamp(32px, 4vw, 48px);
  margin: 0 0 20px;
}

.lead {
  font-size: 18px;
  margin-bottom: 24px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.btn {
  padding: 12px 20px;
  border-radius: 6px;
  border: none;
  background: #2d4f6a;
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
}

.btn.secondary {
  background: #d9caa8;
  color: #2b241d;
}

.btn.ghost {
  background: transparent;
  border: 1px solid #2d4f6a;
  color: #2d4f6a;
}

.image-frame {
  background: #ded7cd;
  border-radius: 12px;
  overflow: hidden;
}

.image-frame img {
  width: 100%;
  height: 100%;
}

.panel {
  padding: 50px 0;
}

.panel.light {
  background: #ffffff;
}

.panel.dark {
  background: #1e2b33;
  color: #f5f2ee;
}

.panel.bg-capital {
  background-color: #1b1d21;
  background: linear-gradient(rgba(27, 29, 33, 0.8), rgba(27, 29, 33, 0.8)),
    url("https://images.unsplash.com/photo-1500534314209-a25ddb2bd429?w=1400&q=80") center/cover no-repeat;
  color: #f7f3ee;
}

.panel .split-text h2 {
  margin-top: 0;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f0ede7;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 13px;
  margin-bottom: 16px;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
  border-radius: 10px;
  background: #f8f6f2;
  border: 1px solid #e4dfd7;
}

.service-item strong {
  font-size: 16px;
}

.price {
  font-weight: 700;
  color: #2d4f6a;
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testimonial {
  padding: 18px;
  background: #ffffff;
  border-radius: 10px;
  border: 1px solid #e2ddd5;
}

.testimonial .name {
  font-weight: 600;
  margin-top: 10px;
}

.form-section {
  padding: 60px 0;
  background: #ffffff;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 24px;
  border-radius: 12px;
  background: #f8f6f2;
  border: 1px solid #e4dfd7;
}

label {
  font-weight: 600;
  font-size: 14px;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 6px;
  border: 1px solid #cfc6ba;
  font-size: 14px;
}

.form-note {
  font-size: 12px;
  color: #6a5f52;
}

.footer {
  margin-top: auto;
  padding: 40px 0;
  background: #1b1d21;
  color: #e6e0d9;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 13px;
}

.footer small {
  display: block;
  margin-top: 16px;
  color: #c7bfb5;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 5;
}

.sticky-cta .btn {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  color: #1b1d21;
  border-radius: 10px;
  border: 1px solid #e2ddd5;
  padding: 16px;
  max-width: 320px;
  z-index: 6;
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  flex: 1;
}

.notice {
  padding: 18px;
  border-radius: 12px;
  background: #f0ede7;
  margin-top: 18px;
}

.content-block {
  padding: 50px 0;
}

.content-block h1 {
  margin-top: 0;
}

.legal-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #ffffff;
  padding: 24px;
  border-radius: 12px;
  border: 1px solid #e2ddd5;
}

.references a {
  color: #d9caa8;
  text-decoration: underline;
}

@media (max-width: 760px) {
  .topbar-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
