* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: #1f2a2e;
  background: #f7f4f1;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 280px;
  background: #111d22;
  color: #f7f4f1;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.brand {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.4px;
}

.ad-label {
  font-size: 12px;
  line-height: 1.4;
  background: rgba(255, 255, 255, 0.08);
  padding: 10px 12px;
  border-radius: 10px;
}

.nav-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nav-links a {
  color: #f7f4f1;
  font-size: 15px;
  padding: 6px 0;
}

.sidebar-cta {
  margin-top: auto;
}

.button,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  border: none;
}

.button {
  background: #f1c087;
  color: #111d22;
}

.button-secondary {
  background: transparent;
  color: #f1c087;
  border: 1px solid #f1c087;
}

.content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.sticky-cta {
  position: sticky;
  top: 0;
  background: #fff7ee;
  padding: 12px 24px;
  display: flex;
  justify-content: flex-end;
  z-index: 2;
  border-bottom: 1px solid #eadfd2;
}

.section {
  padding: 56px 70px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section-title {
  margin: 0;
  font-size: 34px;
  line-height: 1.2;
}

.hero {
  color: #f7f4f1;
  background-image: url("https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?w=1400&q=80");
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(17, 29, 34, 0.78);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 620px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.split {
  display: flex;
  gap: 32px;
  align-items: stretch;
}

.split > div {
  flex: 1;
}

.image-frame {
  background-color: #e6dbcf;
  border-radius: 18px;
  overflow: hidden;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.stats {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.stat-card {
  flex: 1;
  min-width: 180px;
  background: #ffffff;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.card-row {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.service-card {
  flex: 1;
  min-width: 230px;
  background: #ffffff;
  padding: 18px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 10px 24px rgba(17, 29, 34, 0.08);
}

.service-card h3 {
  margin: 0;
  font-size: 18px;
}

.price {
  font-weight: 700;
  color: #1f2a2e;
}

.bg-vision {
  background-image: url("https://images.unsplash.com/photo-1460925895917-afdab827c52f?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #f7f4f1;
  position: relative;
}

.bg-vision::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(24, 32, 36, 0.72);
}

.bg-vision-content {
  position: relative;
  z-index: 1;
  max-width: 650px;
}

.layered {
  background: #fff;
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.08);
  margin-top: -60px;
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px;
  border-left: 3px solid #f1c087;
  background: #fffaf4;
}

.form-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.08);
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d6c9bb;
  font-size: 14px;
}

label {
  font-weight: 600;
}

.footer {
  padding: 40px 70px;
  background: #111d22;
  color: #f7f4f1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  max-width: 360px;
  background: #ffffff;
  color: #1f2a2e;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.14);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 3;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-actions button {
  cursor: pointer;
}

.table-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 16px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
}

.contact-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #ffffff;
  padding: 22px;
  border-radius: 16px;
}

.mini-image {
  height: 220px;
}

.wide-image {
  height: 320px;
}

.card-image {
  height: 160px;
}

.bg-structure {
  background: #f0e6dc;
}

.reference-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.reference-grid div {
  flex: 1;
  min-width: 200px;
  background: #ffffff;
  padding: 18px;
  border-radius: 14px;
}

.legal-text {
  max-width: 720px;
}

.notice {
  font-size: 14px;
  opacity: 0.85;
}
