.page {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1c2430;
  background: #f7f8fb;
  margin: 0;
}

* {
  box-sizing: border-box;
}

a {
  color: #1a4fd8;
  text-decoration: none;
}

.wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.4px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.ad-label {
  font-size: 12px;
  color: #5f6b7c;
  padding: 4px 10px;
  border: 1px solid #cfd6e4;
  border-radius: 999px;
}

.split {
  display: flex;
  gap: 32px;
  align-items: center;
  padding: 56px 0;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .panel {
  flex: 1;
}

.panel img {
  width: 100%;
  height: auto;
  border-radius: 18px;
  object-fit: cover;
  background-color: #dfe5ef;
}

.hero-title {
  font-size: 44px;
  line-height: 1.1;
  margin: 0 0 16px;
}

.lead {
  font-size: 18px;
  color: #3d4858;
}

.cta-row {
  display: flex;
  gap: 16px;
  margin-top: 22px;
  flex-wrap: wrap;
}

.btn {
  border: none;
  background: #1a4fd8;
  color: #ffffff;
  padding: 12px 20px;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
}

.btn.secondary {
  background: #e6ecfb;
  color: #1a4fd8;
}

.soft-panel {
  background: #ffffff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 16px 40px rgba(24, 40, 72, 0.08);
}

.mini-row {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.mini-card {
  flex: 1;
  min-width: 220px;
  padding: 16px;
  border-radius: 16px;
  background: #f1f5ff;
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card {
  display: flex;
  gap: 16px;
  background: #ffffff;
  border-radius: 18px;
  padding: 16px;
  align-items: center;
  box-shadow: 0 12px 32px rgba(24, 40, 72, 0.08);
}

.service-card img {
  width: 180px;
  height: 120px;
  border-radius: 12px;
  object-fit: cover;
  background-color: #dfe5ef;
}

.price {
  font-weight: 700;
  color: #1a4fd8;
}

.bg-panel {
  background: #0f1d33;
  color: #ffffff;
  padding: 64px 0;
}

.bg-panel .soft-panel {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.bg-image-one {
  background-image: url("https://images.unsplash.com/photo-1451187580459-43490279c0fa?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-image-two {
  background-image: url("https://images.unsplash.com/photo-1487058792275-0ad4aaf24ca7?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-panel .wrap {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.bg-panel .panel {
  flex: 1;
  min-width: 260px;
}

.form-section {
  background: #ffffff;
  padding: 56px 0 70px;
}

.form-box {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-box label {
  font-weight: 600;
}

.form-box input,
.form-box select,
.form-box textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #cfd6e4;
  font-size: 15px;
}

.form-box button {
  align-self: flex-start;
}

.footer {
  padding: 32px 0 50px;
  color: #5f6b7c;
  font-size: 14px;
}

.footer .links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 20;
  background: #1a4fd8;
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 12px 24px rgba(26, 79, 216, 0.35);
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  max-width: 360px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 18px 36px rgba(24, 40, 72, 0.2);
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.tag {
  font-size: 12px;
  color: #5f6b7c;
  letter-spacing: 0.4px;
}

.notice {
  background: #fff3d6;
  color: #6b4f00;
  border-radius: 14px;
  padding: 16px;
}

.simple-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 12px 30px rgba(24, 40, 72, 0.08);
}

@media (max-width: 860px) {
  .split,
  .split.reverse {
    flex-direction: column;
  }

  .hero-title {
    font-size: 34px;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
