* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1e1f24;
  background: #f7f4ef;
  line-height: 1.6;
}

a {
  color: #2146ff;
  text-decoration: none;
}

a:focus,
button:focus,
select:focus,
input:focus,
textarea:focus {
  outline: 2px solid #2146ff;
  outline-offset: 2px;
}

header {
  padding: 24px 6%;
  background: #f7f4ef;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.nav-brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand-title {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.brand-subtitle {
  font-size: 13px;
  color: #5a5c6b;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: flex-end;
}

.ad-label {
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #1e1f24;
  color: #f7f4ef;
  white-space: nowrap;
}

main {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.split-section {
  display: flex;
  gap: 32px;
  padding: 48px 6%;
  align-items: stretch;
}

.split-section.reverse {
  flex-direction: row-reverse;
}

.split-content,
.split-media {
  flex: 1 1 50%;
  min-width: 0;
}

.split-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 1.4px;
  font-size: 12px;
  color: #5a5c6b;
}

.hero-title {
  font-size: 40px;
  line-height: 1.2;
  margin: 0;
}

.section-title {
  font-size: 28px;
  margin: 0;
}

.muted {
  color: #5a5c6b;
}

.split-media {
  border-radius: 28px;
  background-size: cover;
  background-position: center;
  min-height: 320px;
  position: relative;
}

.split-media .media-overlay {
  position: absolute;
  inset: 0;
  border-radius: 28px;
  background: linear-gradient(120deg, rgba(15, 16, 22, 0.22), rgba(15, 16, 22, 0));
}

.bg-hero {
  background-color: #c9d2d8;
  background-image: url("https://images.unsplash.com/photo-1505691938895-1758d7feb511?w=1400&q=80");
}

.bg-process {
  background-color: #d7d1c5;
  background-image: url("https://images.unsplash.com/photo-1501594907352-04cda38ebc29?w=1400&q=80");
}

.bg-details {
  background-color: #cfd6cc;
  background-image: url("https://images.unsplash.com/photo-1493666438817-866a91353ca9?w=1400&q=80");
}

.bg-pricing {
  background-color: #d9d0c7;
  background-image: url("https://images.unsplash.com/photo-1512917774080-9991f1c4c750?w=1400&q=80");
}

.bg-form {
  background-color: #d2d6df;
  background-image: url("https://images.unsplash.com/photo-1484154218962-a197022b5858?w=1400&q=80");
}

.bg-about {
  background-color: #d6d1cc;
  background-image: url("https://images.unsplash.com/photo-1502005097973-6a7082348e28?w=1400&q=80");
}

.bg-services {
  background-color: #cfd2d4;
  background-image: url("https://images.unsplash.com/photo-1502672260266-1c1ef2d93688?w=1400&q=80");
}

.card-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  padding: 18px 20px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid #ece7df;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card img {
  border-radius: 16px;
}

.price {
  font-weight: 700;
  font-size: 18px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  background: #1e1f24;
  color: #f7f4ef;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

.btn.secondary {
  background: #f7f4ef;
  color: #1e1f24;
  border: 1px solid #1e1f24;
}

.inline-cta {
  font-weight: 600;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}

.form-panel {
  background: #ffffff;
  border-radius: 22px;
  padding: 26px;
  border: 1px solid #ece7df;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-panel label {
  font-weight: 600;
  font-size: 14px;
}

.form-panel input,
.form-panel select,
.form-panel textarea {
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #cfd2d8;
  font-size: 14px;
  font-family: inherit;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: #2146ff;
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  z-index: 40;
}

.image-frame {
  background-color: #d8d4cd;
  padding: 10px;
  border-radius: 18px;
}

.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.footer {
  padding: 40px 6%;
  background: #1e1f24;
  color: #f7f4ef;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer a {
  color: #f7f4ef;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-note {
  font-size: 13px;
  color: #c9c6c1;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e4dfd7;
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 50;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.page-hero {
  padding: 40px 6% 10px;
}

.page-hero h1 {
  font-size: 34px;
  margin: 0 0 10px;
}

.page-content {
  padding: 24px 6% 50px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  border: 1px solid #ece7df;
}

@media (max-width: 900px) {
  .split-section {
    flex-direction: column;
  }

  .split-section.reverse {
    flex-direction: column;
  }

  .hero-title {
    font-size: 32px;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
