* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1b1b1b;
  background: #f6f5f2;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}

a {
  color: #1b1b1b;
  text-decoration: none;
}

.page {
  max-width: 1180px;
  margin: 0 auto;
  padding: 32px 24px 80px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 24px;
  background: #fff;
  border-bottom: 1px solid #e4e1da;
}

.nav-left {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.ad-label {
  font-size: 12px;
  color: #5a564c;
}

.nav-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.nav-links a,
.nav-links button {
  font-size: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid #d6d2c8;
  background: #fff;
  cursor: pointer;
}

.nav-links a:hover,
.nav-links button:hover {
  border-color: #6a665d;
}

.split-section {
  display: flex;
  gap: 32px;
  align-items: stretch;
  margin: 48px 0;
}

.split-section.reverse {
  flex-direction: row-reverse;
}

.split-text,
.split-media {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.split-media {
  background: #e6e2d9;
  padding: 16px;
  border-radius: 18px;
}

.split-media img {
  border-radius: 14px;
  width: 100%;
  height: 100%;
}

.hero {
  background-color: #2f2c27;
  background-image: url("https://images.unsplash.com/photo-1487014679447-9f8336841d58?w=1400&q=80");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 90px 40px;
  border-radius: 28px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(27, 27, 27, 0.45);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 520px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-content h1 {
  font-size: 40px;
  line-height: 1.15;
}

.hero-content p {
  font-size: 18px;
  color: #f4f1ea;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary,
.btn-inline {
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: #f4d38b;
  color: #1b1b1b;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.btn-inline {
  background: transparent;
  color: #1b1b1b;
  border: 1px solid #1b1b1b;
}

.panel {
  background: #fff;
  padding: 28px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.panel h2 {
  font-size: 28px;
}

.highlight {
  background-color: #1f2a33;
  background-image: url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d?w=1400&q=80");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 60px 32px;
  border-radius: 26px;
  color: #fff;
  position: relative;
}

.highlight::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(14, 24, 32, 0.55);
  border-radius: 26px;
}

.highlight-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 560px;
}

.process-bg {
  background-color: #2d3236;
  background-image: url("https://images.unsplash.com/photo-1494173853739-c21f58b16055?w=1400&q=80");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 52px 32px;
  border-radius: 26px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.process-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(20, 20, 20, 0.5);
}

.process-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 520px;
}

.tag-list {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.tag {
  background: rgba(255, 255, 255, 0.2);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 13px;
}

.service-card {
  display: flex;
  gap: 18px;
  background: #fff;
  padding: 20px;
  border-radius: 18px;
  align-items: center;
}

.service-card img {
  width: 140px;
  height: 120px;
  border-radius: 14px;
  background-color: #e6e2d9;
}

.service-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.price {
  font-weight: 700;
  color: #2d4a3f;
}

.form-panel {
  background: #fff;
  padding: 28px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-weight: 600;
  font-size: 14px;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d0cbc0;
  font-size: 14px;
  background: #fff;
}

.form-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  padding: 12px 18px;
  border-radius: 999px;
  background: #1b1b1b;
  color: #fff;
  border: none;
  cursor: pointer;
  z-index: 10;
}

.footer {
  margin-top: 80px;
  padding: 40px 24px;
  background: #fff;
  border-top: 1px solid #e4e1da;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.two-col {
  display: flex;
  gap: 32px;
  align-items: stretch;
}

.two-col.reverse {
  flex-direction: row-reverse;
}

.content-block {
  background: #fff;
  padding: 24px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.image-frame {
  background-color: #dcd7ce;
  padding: 12px;
  border-radius: 18px;
  flex: 1;
}

.image-frame img {
  width: 100%;
  height: 100%;
  border-radius: 14px;
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #fff;
  border: 1px solid #dcd7ce;
  border-radius: 16px;
  padding: 18px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-actions button {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid #1b1b1b;
  background: #fff;
  cursor: pointer;
}

@media (max-width: 900px) {
  .split-section,
  .two-col {
    flex-direction: column;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
