.fabu-shell {
  width: 1180px;
  margin: 30px auto 60px;
}

.fabu-hero {
  margin-bottom: 22px;
  padding: 26px 34px;
  border-radius: 18px;
  background: linear-gradient(135deg, #fef7ec 0%, #fff 52%, #eef7ff 100%);
  box-shadow: 0 14px 40px rgba(37, 67, 102, 0.1);
}

.fabu-hero h1 {
  margin: 0 0 10px;
  color: #243b53;
  font-size: 34px;
  line-height: 1.2;
}

.fabu-hero p {
  margin: 0;
  color: #5f6c7b;
  font-size: 15px;
  line-height: 1.8;
}

.fabu-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 22px;
}

.fabu-card,
.fabu-side-card {
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 14px 40px rgba(37, 67, 102, 0.1);
}

.fabu-card {
  padding: 28px 30px 34px;
}

.fabu-card h2 {
  margin: 0 0 22px;
  padding-bottom: 14px;
  border-bottom: 1px solid #e8edf3;
  color: #203246;
  font-size: 26px;
}

.fabu-card h2 span {
  color: #cc4e00;
  font-size: 15px;
  font-weight: 400;
}

.fabu-form {
  overflow: hidden;
}

.fabu-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 24px;
  margin-bottom: 18px;
}

.fabu-field {
  min-width: 0;
}

.fabu-field.full {
  grid-column: 1 / -1;
}

.fabu-field label {
  display: block;
  margin-bottom: 8px;
  color: #243b53;
  font-size: 15px;
  font-weight: 600;
}

.fabu-field .required {
  color: #d93025;
  margin-left: 6px;
}

.fabu-input,
.fabu-select,
.fabu-textarea,
.fabu-upload {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #d8e2eb;
  border-radius: 10px;
  background: #fff;
  padding: 12px 14px;
  color: #243b53;
  font-size: 14px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.fabu-input:focus,
.fabu-select:focus,
.fabu-textarea:focus,
.fabu-upload:focus {
  outline: none;
  border-color: #4b88e6;
  box-shadow: 0 0 0 3px rgba(75, 136, 230, 0.12);
}

.fabu-select {
  height: 46px;
}

.fabu-textarea {
  min-height: 220px;
  resize: vertical;
}

.fabu-help {
  margin-top: 6px;
  color: #7b8a9a;
  font-size: 12px;
}

.fabu-status {
  min-height: 24px;
  margin-top: 8px;
  color: #d93025;
  font-size: 13px;
  line-height: 24px;
}

.fabu-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  height: 48px;
  margin-top: 8px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #2e7bd7, #2aa8df);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 16px 30px rgba(42, 130, 214, 0.22);
}

.fabu-submit:hover {
  filter: brightness(0.98);
}

.fabu-side-card {
  padding: 22px 22px 24px;
}

.fabu-side-card + .fabu-side-card {
  margin-top: 18px;
}

.fabu-side-card h3 {
  margin: 0 0 12px;
  color: #203246;
  font-size: 18px;
}

.fabu-side-card p,
.fabu-side-card li {
  color: #5f6c7b;
  font-size: 14px;
  line-height: 1.8;
}

.fabu-side-card ul {
  margin: 0;
  padding-left: 18px;
}

.fabu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(10, 20, 40, 0.52);
}

.fabu-popup {
  display: none;
  position: fixed;
  left: 50%;
  top: 50%;
  z-index: 1000;
  width: 420px;
  transform: translate(-50%, -50%);
  border-radius: 18px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 22px 60px rgba(21, 37, 61, 0.24);
}

.fabu-popup-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 54px;
  padding: 0 18px;
  border-bottom: 1px solid #edf1f5;
  color: #44576d;
  font-size: 15px;
}

.fabu-popup-close {
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 999px;
  background: #f3f6fa;
  color: #5f6c7b;
  font-size: 15px;
  cursor: pointer;
}

.fabu-popup-body {
  padding: 28px 24px 26px;
  text-align: center;
}

.fabu-popup-body img {
  display: block;
  width: 210px;
  height: 210px;
  margin: 0 auto 18px;
  object-fit: cover;
  border-radius: 12px;
  background: #f5f7fb;
}

.fabu-popup-price {
  margin: 0 0 8px;
  color: #cc4e00;
  font-size: 22px;
  font-weight: 700;
}

.fabu-popup-desc {
  margin: 0;
  color: #5f6c7b;
  font-size: 14px;
  line-height: 1.8;
}

.fabu-site-footer {
  margin-top: 56px;
  background: linear-gradient(180deg, #1f2f45 0%, #152233 100%);
  color: rgba(255, 255, 255, 0.72);
}

.fabu-footer-main {
  width: 1180px;
  margin: 0 auto;
  padding: 42px 0 30px;
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.fabu-footer-links {
  display: flex;
  flex: 1;
  gap: 54px;
}

.fabu-footer-list {
  margin: 0;
  padding: 0;
  list-style: none;
  min-width: 140px;
}

.fabu-footer-list .tit {
  margin-bottom: 16px;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
}

.fabu-footer-list .list {
  margin-bottom: 12px;
  font-size: 14px;
  line-height: 1.7;
}

.fabu-footer-list .list a,
.fabu-footer-copy a {
  color: rgba(255, 255, 255, 0.74);
  text-decoration: none;
}

.fabu-footer-list .list a:hover,
.fabu-footer-copy a:hover {
  color: #fff;
}

.fabu-footer-contact {
  width: 320px;
  padding: 6px 0 0;
}

.fabu-footer-tel {
  margin-bottom: 12px;
  color: #fff;
  font-size: 34px;
  font-weight: 700;
  line-height: 1.1;
}

.fabu-footer-desc {
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 1.8;
}

.fabu-footer-copy {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 18px 12px 22px;
  text-align: center;
  font-size: 13px;
  line-height: 1.9;
}

@media (max-width: 1260px) {
  .fabu-shell {
    width: calc(100% - 24px);
  }

  .fabu-footer-main {
    width: calc(100% - 24px);
  }
}

@media (max-width: 960px) {
  .fabu-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .fabu-footer-main,
  .fabu-footer-links {
    flex-direction: column;
    gap: 24px;
  }

  .fabu-footer-contact {
    width: auto;
  }
}

@media (max-width: 768px) {
  .fabu-hero,
  .fabu-card,
  .fabu-side-card {
    padding-left: 18px;
    padding-right: 18px;
  }

  .fabu-row {
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
  }

  .fabu-submit {
    width: 100%;
    min-width: 0;
  }

  .fabu-popup {
    width: calc(100% - 24px);
  }

  .fabu-footer-main {
    padding-top: 32px;
    padding-bottom: 24px;
  }

  .fabu-footer-links {
    gap: 18px;
  }

  .fabu-footer-tel {
    font-size: 28px;
  }
}
