* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1f2328;
  background: #f7f5f1;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.layout {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 260px;
  padding: 28px 22px;
  background: #f0ede7;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.brand {
  font-size: 20px;
  font-weight: 700;
  text-transform: lowercase;
  letter-spacing: 0.06em;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 15px;
}

.ad-label {
  font-size: 12px;
  line-height: 1.4;
  color: #5a5a5a;
  padding-top: 6px;
  border-top: 1px solid #d2cdc3;
}

.main {
  flex: 1;
  padding: 32px 40px 90px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.hero {
  display: flex;
  gap: 28px;
  align-items: stretch;
}

.hero-content {
  flex: 1.1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.hero-title {
  font-size: 40px;
  line-height: 1.1;
  margin: 0;
}

.hero-text {
  font-size: 18px;
  line-height: 1.6;
  margin: 0;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-media {
  flex: 1;
  min-height: 340px;
  border-radius: 22px;
  overflow: hidden;
  background-color: #d8d5cf;
  display: flex;
  align-items: stretch;
}

.bg-hero {
  background-image: url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d?w=1400&q=80");
  background-size: cover;
  background-position: center;
  width: 100%;
}

.section {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.section.bg-context {
  background-image: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1400&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 22px;
  padding: 28px;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.section.bg-context::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(20, 24, 28, 0.6);
}

.section.bg-context > * {
  position: relative;
}

.section-split {
  display: flex;
  gap: 28px;
  align-items: center;
}

.section-split.reverse {
  flex-direction: row-reverse;
}

.section-title {
  font-size: 28px;
  margin: 0;
}

.section-text {
  font-size: 16px;
  line-height: 1.7;
  margin: 0;
}

.image-frame {
  flex: 1;
  min-height: 240px;
  border-radius: 18px;
  overflow: hidden;
  background-color: #d9dfe4;
}

.cards {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 10px 26px rgba(26, 27, 29, 0.08);
}

.card-image {
  height: 150px;
  border-radius: 14px;
  overflow: hidden;
  background-color: #dbe0e6;
}

.price {
  font-weight: 700;
  color: #1f2a2e;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-left: 0;
  margin: 0;
  list-style: none;
}

.service-item {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
  background: #ffffff;
  border-radius: 14px;
}

.tag {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: #1f2a2e;
  color: #ffffff;
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.btn {
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #1f2a2e;
  background: #ffffff;
}

.btn.primary {
  background: #1f2a2e;
  color: #ffffff;
}

.btn.secondary {
  background: #f4f2ee;
}

.note {
  background: #fdf7ea;
  padding: 18px;
  border-radius: 16px;
  border: 1px solid #eadfca;
}

.steps {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.step {
  flex: 1 1 220px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  border-left: 4px solid #1f2a2e;
}

.form-area {
  background: #ffffff;
  padding: 24px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 10px 24px rgba(26, 27, 29, 0.06);
}

.form-grid {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

label {
  font-size: 14px;
  font-weight: 600;
}

select,
input,
textarea {
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #d4d1c9;
  font-size: 15px;
  font-family: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.form-field {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-status {
  font-size: 14px;
  color: #7a1f1f;
}

.policy-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
  color: #4c4c4c;
}

.footer {
  border-top: 1px solid #d2cdc3;
  padding-top: 20px;
  font-size: 13px;
  color: #4c4c4c;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.disclaimer {
  font-size: 12px;
  line-height: 1.5;
  color: #5d5d5d;
}

.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #1f2a2e;
  color: #ffffff;
  padding: 14px 20px;
  border-radius: 999px;
  display: flex;
  gap: 12px;
  align-items: center;
  box-shadow: 0 12px 24px rgba(31, 42, 46, 0.28);
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  max-width: 360px;
  background: #ffffff;
  padding: 16px;
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(26, 27, 29, 0.16);
  border: 1px solid #e1ddd6;
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.hidden {
  display: none;
}

@media (max-width: 980px) {
  .layout {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
  }

  .nav {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .main {
    padding: 28px;
  }

  .hero {
    flex-direction: column;
  }

  .section-split,
  .section-split.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    left: 20px;
    right: 20px;
    justify-content: center;
  }
}
