/* Base */
* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #141414;
  background: #f7f7f4;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0 16px;
}

.nav-left,
.nav-right {
  display: flex;
  gap: 18px;
  font-size: 14px;
  letter-spacing: 0.02em;
}

.brand {
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav a {
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
}

.nav a:hover {
  border-color: #141414;
}

.hero-tag {
  display: inline-flex;
  padding: 6px 14px;
  border-radius: 999px;
  background: #141414;
  color: #f7f7f4;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.split-section {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 56px 0;
}

.split-section.alt {
  background: #ececea;
}

.split-section.deep {
  background: #141414;
  color: #f7f7f4;
}

.split-row {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split-row.reverse {
  flex-direction: column-reverse;
}

.split-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.split-content h1,
.split-content h2,
.split-content h3 {
  margin: 0;
  line-height: 1.1;
}

.split-content p {
  margin: 0;
  line-height: 1.6;
  font-size: 16px;
}

.split-media {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.split-media .badge {
  position: absolute;
  bottom: 18px;
  left: 18px;
  background: #f7f7f4;
  color: #141414;
  padding: 8px 12px;
  border-radius: 16px;
  font-size: 12px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid #141414;
  background: transparent;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn.primary {
  background: #141414;
  color: #f7f7f4;
}

.btn.light {
  background: #f7f7f4;
  color: #141414;
}

.btn:hover {
  transform: translateY(-1px);
}

.inline-link {
  font-weight: 600;
  text-decoration: underline;
}

.service-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
  border-radius: 20px;
  background: #f7f7f4;
  border: 1px solid #d9d9d3;
}

.service-card h4 {
  margin: 0;
  font-size: 18px;
}

.service-price {
  font-size: 20px;
  font-weight: 700;
}

.meta-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 14px;
  opacity: 0.8;
}

.form-shell {
  background: #f7f7f4;
  border-radius: 24px;
  padding: 24px;
  border: 1px solid #d9d9d3;
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #c8c8c2;
  background: #ffffff;
  font-size: 15px;
}

textarea {
  min-height: 100px;
  resize: vertical;
}

.testimonial {
  border-left: 2px solid #141414;
  padding-left: 16px;
  font-style: italic;
}

.list-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.list-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.highlight {
  background: rgba(20, 20, 20, 0.08);
  padding: 4px 8px;
  border-radius: 10px;
}

.footer {
  padding: 40px 0 48px;
  font-size: 13px;
  color: #4a4a46;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #141414;
  color: #f7f7f4;
  padding: 12px 18px;
  border-radius: 999px;
  z-index: 20;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.2);
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  max-width: 320px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  border: 1px solid #d9d9d3;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.cookie-hidden {
  display: none;
}

.page-hero {
  padding: 40px 0 32px;
}

.page-hero h1 {
  margin: 0;
}

.split-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split-item {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 22px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid #deded8;
}

.contact-box {
  background: #ffffff;
  padding: 24px;
  border-radius: 24px;
  border: 1px solid #deded8;
}

.legal-text {
  line-height: 1.6;
  font-size: 15px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  padding: 6px 12px;
  border-radius: 999px;
  background: #141414;
  color: #f7f7f4;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

@media (min-width: 920px) {
  .split-section {
    padding: 80px 0;
  }

  .split-row {
    flex-direction: row;
    align-items: stretch;
  }

  .split-row.reverse {
    flex-direction: row-reverse;
  }

  .split-content p {
    font-size: 17px;
  }

  .service-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-card {
    flex: 1 1 calc(50% - 16px);
  }

  .form-grid {
    flex-direction: row;
  }

  .form-grid .field {
    flex: 1;
  }

  .split-list {
    gap: 32px;
  }

  .split-item {
    flex-direction: row;
    align-items: center;
  }

  .contact-box {
    display: flex;
    gap: 40px;
    align-items: center;
  }
}
