* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1f2a37;
  --muted: #556070;
  --accent: #2d6cdf;
  --accent-dark: #1e4ea6;
  --paper: #f7f3ee;
  --sand: #efe7de;
  --olive: #c8d2c3;
  --rose: #f1d8d1;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

header {
  background: var(--paper);
  border-bottom: 1px solid #e2ddd6;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 8%;
  gap: 24px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.3px;
}

nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
}

.ad-label {
  font-size: 12px;
  color: var(--muted);
  max-width: 320px;
}

.hero {
  display: flex;
  align-items: stretch;
  gap: 32px;
  padding: 40px 8%;
  background: var(--sand);
}

.hero-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
  justify-content: center;
}

.hero-visual {
  flex: 1;
  min-height: 360px;
  background-color: #e0d7cc;
  display: flex;
}

.hero-visual img {
  width: 100%;
  height: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn.secondary {
  background: var(--accent-dark);
}

.section {
  padding: 56px 8%;
}

.section.alt {
  background: var(--paper);
}

.split {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-content,
.split-media {
  flex: 1 1 320px;
}

.split-media {
  min-height: 280px;
  background-color: #dcd6cc;
  display: flex;
}

.split-media img {
  width: 100%;
  height: 100%;
}

.note {
  background: var(--olive);
  padding: 20px;
  border-radius: 16px;
}

.pricing-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.price-row {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 18px;
  border: 1px solid #e1e6e1;
  border-radius: 14px;
  background: #fff;
}

.price-row strong {
  min-width: 130px;
  color: var(--accent-dark);
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--rose);
  padding: 24px;
  border-radius: 18px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #c8cdd3;
  font-size: 14px;
}

footer {
  background: var(--paper);
  padding: 40px 8%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 14px;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.sticky-cta {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 9;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  bottom: 16px;
  right: 16px;
  background: #fff;
  border: 1px solid #d9d4cc;
  border-radius: 16px;
  padding: 18px;
  display: none;
  gap: 16px;
  z-index: 10;
}

.cookie-banner.active {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.page-header {
  padding: 36px 8%;
  background: var(--sand);
}

.contact-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #fff;
  padding: 24px;
  border-radius: 16px;
  border: 1px solid #ddd4c8;
}

.legal {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 860px;
}

.hero h1,
.page-header h1 {
  font-size: 32px;
  line-height: 1.2;
}

@media (max-width: 900px) {
  .hero,
  .split {
    flex-direction: column;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
