* {
  box-sizing: border-box;
}

:root {
  --ink: #1c1c1e;
  --muted: #5f646b;
  --paper: #f7f4ef;
  --stone: #e6e1d8;
  --accent: #2f4a5c;
  --accent-light: #d8e1e8;
  --sun: #d9c7a6;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.header {
  padding: 28px 0;
  background: #ffffff;
  border-bottom: 1px solid var(--stone);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand strong {
  font-size: 20px;
  letter-spacing: 0.4px;
}

.brand span {
  font-size: 13px;
  color: var(--muted);
}

.nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
}

.ad-label {
  font-size: 12px;
  color: var(--muted);
  max-width: 200px;
  text-align: right;
}

.split {
  display: flex;
  gap: 36px;
  align-items: stretch;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > * {
  flex: 1 1 320px;
}

.hero {
  padding: 60px 0;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-image {
  background-color: var(--accent-light);
  border-radius: 18px;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  min-height: 320px;
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid var(--ink);
  background: transparent;
  cursor: pointer;
  font-size: 14px;
}

.btn.primary {
  background: var(--accent);
  color: #ffffff;
  border-color: var(--accent);
}

.btn.light {
  background: #ffffff;
  border-color: var(--stone);
}

.section-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 10px 30px rgba(28, 28, 30, 0.06);
}

.metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.metric {
  flex: 1 1 160px;
  background: var(--stone);
  padding: 18px;
  border-radius: 14px;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-item {
  display: flex;
  gap: 18px;
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  flex-wrap: wrap;
}

.service-image {
  flex: 1 1 220px;
  min-height: 220px;
  background-color: var(--sun);
}

.service-image img {
  width: 100%;
  height: 100%;
}

.service-body {
  flex: 2 1 320px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 600;
  color: var(--accent);
}

.form-wrap {
  background: #ffffff;
  border-radius: 18px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-wrap label {
  font-size: 14px;
  color: var(--muted);
}

.form-wrap input,
.form-wrap select,
.form-wrap textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--stone);
  font-size: 14px;
  font-family: inherit;
}

.form-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.form-row > * {
  flex: 1 1 220px;
}

.image-strip {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.image-strip .strip-item {
  flex: 1 1 240px;
  border-radius: 16px;
  overflow: hidden;
  background-color: var(--accent-light);
}

.image-strip img {
  width: 100%;
  height: 220px;
}

.bg-panel {
  padding: 50px 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #ffffff;
}

.bg-context {
  background-image: url("https://images.unsplash.com/photo-1500534314209-a25ddb2bd429?w=1400&q=80");
  background-color: #2f4a5c;
}

.bg-legal {
  background-image: url("https://images.unsplash.com/photo-1473186578172-c141e6798cf4?w=1400&q=80");
  background-color: #3f4a44;
}

.bg-contact {
  background-image: url("https://images.pexels.com/photos/26508130/pexels-photo-26508130.jpeg");
  background-color: #37435c;
}

.bg-panel .section-card {
  background: rgba(28, 28, 30, 0.72);
  color: #ffffff;
}

.footer {
  padding: 32px 0 60px;
  background: #ffffff;
  border-top: 1px solid var(--stone);
  font-size: 14px;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-grid > div {
  flex: 1 1 220px;
}

.legal-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.notice {
  font-size: 12px;
  color: var(--muted);
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  padding: 16px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(28, 28, 30, 0.12);
  display: none;
  gap: 12px;
  flex-wrap: wrap;
  z-index: 30;
}

.cookie-banner.active {
  display: flex;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.simple-hero {
  padding: 40px 0;
}

.inline-image {
  background-color: var(--sun);
  border-radius: 16px;
  overflow: hidden;
}

.inline-image img {
  width: 100%;
  height: 280px;
}

.list-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.link-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
