* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1e2330;
  background: #f6f4f1;
  line-height: 1.6;
}

a {
  color: #1e2330;
  text-decoration: none;
}

a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline: 2px solid #4e6cff;
  outline-offset: 2px;
}

.page-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 24px 80px;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  padding-bottom: 24px;
}

.brand-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.brand-block h2 {
  font-size: 24px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.ad-label {
  font-size: 12px;
  color: #5a6476;
  max-width: 260px;
}

.nav-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-end;
}

.nav-list a {
  font-weight: 600;
  font-size: 14px;
}

.nav-list a:hover {
  text-decoration: underline;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
  padding: 48px 0;
}

.hero-text {
  flex: 1;
  min-width: 280px;
}

.hero-text h1 {
  font-size: 40px;
  margin-bottom: 16px;
}

.hero-text p {
  font-size: 18px;
  color: #40485a;
}

.hero-actions {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-media {
  flex: 1;
  min-width: 280px;
  background: #dfe3ea;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

.hero-media img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 24px;
  border: none;
  background: #1e2330;
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
}

.btn:hover {
  background: #2c3243;
}

.btn.secondary {
  background: #f1e7dc;
  color: #1e2330;
  border: 1px solid #c8b9a8;
}

.btn.secondary:hover {
  background: #eadbca;
}

.section {
  padding: 48px 0;
}

.section.alt {
  background: #ffffff;
  border-radius: 24px;
  padding: 48px;
}

.section-title {
  font-size: 28px;
  margin-bottom: 16px;
}

.asym-row {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: stretch;
}

.asym-row.reverse {
  flex-direction: row-reverse;
}

.asym-row .text-block {
  flex: 1.2;
  min-width: 260px;
}

.asym-row .image-block {
  flex: 0.8;
  min-width: 240px;
  background: #e4e0db;
  border-radius: 16px;
  overflow: hidden;
}

.asym-row .image-block img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 10px 30px rgba(17, 24, 39, 0.08);
}

.card-media {
  background: #d9dde5;
  border-radius: 14px;
  overflow: hidden;
}

.card-media img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}

.card h3 {
  font-size: 18px;
}

.price {
  font-weight: 700;
  color: #23324d;
}

.note {
  font-size: 14px;
  color: #5c6476;
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #ffffff;
  padding: 24px;
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

.lead-form label {
  font-weight: 600;
  font-size: 14px;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #c7cfdd;
  font-size: 14px;
  font-family: inherit;
}

.form-message {
  font-size: 14px;
  color: #1e2330;
  background: #f2f5ff;
  padding: 10px 12px;
  border-radius: 10px;
  display: none;
}

.form-message.visible {
  display: block;
}

.sticky-cta {
  position: sticky;
  top: 24px;
  background: #1e2330;
  color: #ffffff;
  padding: 16px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sticky-cta a {
  color: #ffffff;
  font-weight: 600;
}

.footer {
  margin-top: 80px;
  padding-top: 32px;
  border-top: 1px solid #d4d9e3;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.footer small {
  color: #5c6476;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.18);
  padding: 16px 18px;
  max-width: 320px;
  display: none;
  z-index: 999;
}

.cookie-banner.visible {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.simple-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
}

.split-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.split-panel .panel {
  flex: 1;
  min-width: 260px;
  background: #ffffff;
  border-radius: 16px;
  padding: 24px;
}

.section-background {
  background: #ece9e5;
  border-radius: 24px;
  padding: 40px;
}

.section-background img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

.image-caption {
  font-size: 13px;
  color: #6a7285;
  margin-top: 8px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.contact-block {
  flex: 1;
  min-width: 260px;
  background: #ffffff;
  border-radius: 18px;
  padding: 24px;
}
